Re: [PHP] Because you guys/gals/girls/women/insert pc term here are a smart lot

2009-01-07 Thread David Giragosian
On 1/7/09, Jim Lyons wrote: > > There are other factors. If a table is completely fixed in size it makes > for a faster lookup time since the offset is easier to compute. This is > true, at least, for myisam tables. All books on tuning that I have read > have said the CHAR makes for more effici

Re: [PHP] Help me about detect client screen resolution!!!

2007-01-02 Thread David Giragosian
On 1/2/07, Stut <[EMAIL PROTECTED]> wrote: Le Phuoc Canh wrote: > Can we use php to detect client screen resolution? Please help me ? > No "we" can't. "You" need Javascript or another "client"-side technology for that. -Stut -- PHP General Mailing List (http://www.php.net/) To unsubscribe, vi

Re: [PHP] Some advice / points / help

2007-01-05 Thread David Giragosian
So the question is... How to grab data from the DB and create a jpg from it, looking pretty like http://steven.macintyre.name/arb/showlineups.jpg (I added the colon ;-) ) ?? David

Re: [PHP] Re: Still problem with file reading

2007-01-05 Thread David Giragosian
Why don't you start by running file_exists() on another file in the same directory: if (file_exists("./findMe.php")) echo "It's here"; then, directory by directory, move towards where you want the real file to be read. If a move fails, check permissions as already suggested ( and capitali

Re: [PHP] Please Help with simple Noob problem

2007-01-11 Thread David Giragosian
Well, actually I don't see anything. Nothing at all (in the case of the phpinfo() page. All the page has in it is just . It was saved as test.php. How can I tell if something is broken and where do I look for the files? I haven't done any dorking around with the links, etc. Just done the com

Re: [PHP] Variance Function

2007-01-12 Thread David Giragosian
Richard, I think you are looking for data about both the variance and the standard deviation of the array of dates. This would yield, for example, a bell-shaped curve, like one gets when administering an intelligence test to a sample population. Two thirds of the dates fall within +/- 1 standard

Re: [PHP] Hello

2007-01-13 Thread David Giragosian
On 1/13/07, John Meyer <[EMAIL PROTECTED]> wrote: Edward wrote: > How do I create a php document so that people in my nonprofit can vote > on issues online through the organization's website? > > Thanks, > > Edward > Start with PHP, add MySQL or your database of choice, mix and prepare. Serves 5

Re: [PHP] $_SESSION variable gets lost on FORM action

2007-01-16 Thread David Giragosian
On 1/16/07, Nuno Oliveira <[EMAIL PROTECTED]> wrote: Hi, I'm working on a website and one of the features that I've implemented so far is the user timeout. Every time that a user browses to a different page, the variable named $_SESSION['user']['lastactive'] is updated to the current time. Ho

Re: [PHP] os php scheduler?

2007-01-22 Thread David Giragosian
On 1/20/07, blackwater dev <[EMAIL PROTECTED]> wrote: Does anyone have recommendations for an open source php based, 'lightweight', scheduling app? I just want something clean that I can use to schedule trainings within our company. I need to be able to put in details for each training and the

Re: [PHP] DATE

2007-01-28 Thread David Giragosian
Ron Piggott wrote: > I have date in the variable $date_reference in the format -MM-DD. > How do I find out the date before this and the date after this? Ron > Not enough information, Ron. Do you mean: 1. as exists in some data set that you've created or stored, like in an array or a datab

Re: [PHP] Parsing mail file

2007-01-30 Thread David Giragosian
On 1/30/07, Jay Blanchard <[EMAIL PROTECTED]> wrote: [snip] of course people read documentation before asking help [/snip] ROFLMMFAO! Sorry, that just made my day! Wow. I learned a new acronym. What a great day! David

Re: [PHP] Re: Text Editor for Windows?

2007-02-09 Thread David Giragosian
I've been using SciTE for many years now. http://www.scintilla.org/SciTE.html It's small and lightweight, has code folding and bracket highlighting and a lot of other nifty features. I also have Zend Studio IDE Professional but it is slow and bloated compared with SciTE. 2 more pennies... Dav

Re: [PHP] Option Value

2007-02-23 Thread David Giragosian
On 2/23/07, Dan Shirah <[EMAIL PROTECTED]> wrote: On my form I have several drop down menus. They all work and display the corrent values. However, I would like the initial display of the form to show each dropdown as blank. $q_status = "SELECT * FROM status_codes ORDER BY status_description

Re: [PHP] Magic Quotes

2007-02-23 Thread David Giragosian
On 2/23/07, Liz Kim <[EMAIL PROTECTED]> wrote: I've got all three Magic Quote directives turned off... When I use sql query to grab any string from a database, it still spits out the \ in front of the special characters.. Any ideas? thanks What's it look like in the database? David

Re: [PHP] Multiple Submit

2007-02-26 Thread David Giragosian
I always use : onClick=\"this.form.action='SomeOtherPage.php'; \" inside the button tag. Seems to work just fine. David On 2/26/07, Dan Shirah <[EMAIL PROTECTED]> wrote: When I click on "save" at the bottom, I want it to check my form and submit all the values. When I click on the "Retriev

Re: [PHP] Help with a within week function

2007-03-05 Thread David Giragosian
On 3/5/07, Jim Moseby <[EMAIL PROTECTED]> wrote: > > I have been trying to find a way to search a DB and match a > range within a > week ( php & mysql ). > > This doesn't make sense, so I will describe it in more detail. > > > > Hi everyone, > > I need help with a search, lets say a record has a

Re: [PHP] Creating variable names from values

2007-03-08 Thread David Giragosian
On 3/8/07, Otto Wyss <[EMAIL PROTECTED]> wrote: Satyam wrote: > > $key = 'K' . $key; >if ($$key) { > > notice double dollar sign, it means, not the value of $key but the value of > the variable $key says. > Thanks, any idea where this is described in the PHP manual? Searching for "$$" pr

Re: [PHP] Posting variable outside of the post form

2007-03-12 Thread David Giragosian
On 3/12/07, Otto Wyss <[EMAIL PROTECTED]> wrote: I submit a form back to itself with action="" methode="get" yet I've a large PHP variable which I'd like to access afterwards as well. Is this possible somehow? O. Wyss Cookie, session variable, session cookie, database layer... David

Re: [PHP] "register_argc_argv" directive

2007-04-19 Thread David Giragosian
On 4/18/07, Richard Lynch <[EMAIL PROTECTED]> wrote: On Wed, April 18, 2007 9:04 am, Bagus Nugroho wrote: > I'm confuse about usage of php.ini directive "register_argc_argv". > Is used for command line purpose only? I suspect that in CGI (and possibly even FCGI) $argv and $argc may also end up

Re: [PHP] c++ and php! search for a brigde

2007-08-28 Thread David Giragosian
On 8/28/07, Simon <[EMAIL PROTECTED]> wrote: > > you can use sockets in php, they work the same as berkley sockets > you can use system() in php, to call your C++ program (the program > could output html) > in my opinon CGI with C/C++ is obsolete, use php/apache for best results! > > another nice w

[PHP] Any way to turn off daylight savings time in PHP5?

2007-09-13 Thread David Giragosian
Is there anyway to get PHP (v5.1.6) to use the OS time for date functions as PHP4 did? phpinfo() lists something called "Timezone Database: internal" under the date section, so I'm guessing that's where the data is originating. Here's the background: We have a LAMP server that has a special rul

Re: [PHP] Extracting text from PDF files

2007-10-10 Thread David Giragosian
On 10/9/07, Jay Blanchard <[EMAIL PROTECTED]> wrote: > > [snip] > I need to extract the text from a PDF file for > storage in the database. > [/snip] > > It depends. If the PDF is an image file you cannot do it with PHP. > > http://www.php.net/pdf read the second user note > > > [snip] > Madison, W

Re: [PHP] round()

2007-10-10 Thread David Giragosian
On 10/10/07, tedd <[EMAIL PROTECTED]> wrote: > > Hi gang: > > While we're entertaining algorithms, has anyone else noticed that > php's round() isn't the most accurate algorithm to round? > > Cheers, > > tedd > > -- > --- > http://sperling.com http://ancientstones.com http://earthstones.com

Re: [PHP] How to decode the PHP Source Code

2007-10-12 Thread David Giragosian
On 10/12/07, tedd <[EMAIL PROTECTED]> wrote: > > At 9:57 AM -0400 10/11/07, Daniel Brown wrote: > > > > > > By the way, Tedd you alright there? Ya' kinda' got squashed. > > > >-- > >Daniel P. Brown > > I'm find, but I lost my thought -- it's happening more these days. :-) > > Cheers, > > t

Re: [PHP] p-s-e-x-e-c

2007-10-18 Thread David Giragosian
On 10/18/07, Philip Thompson <[EMAIL PROTECTED]> wrote: > > On 10/18/07, Instruct ICC <[EMAIL PROTECTED]> wrote: > > > > > > > Hi. I'm wanting to run an executable that generates a text file, and > I'm > > > having some issues. When I run the command on the server itself, it > > works > > > just fi

Re: [PHP] EMPTY??

2007-10-23 Thread David Giragosian
On 10/23/07, Dan Shirah <[EMAIL PROTECTED]> wrote: > > I am having some issues with empty(). > > On my page I have a text area: > > width="680"> > > Comments: > wrap="soft"> > > > > > I then submit my page and on the following page I put the posted value > into > two variables. > >

Re: [PHP] EMPTY??

2007-10-23 Thread David Giragosian
On 10/23/07, Dan Shirah <[EMAIL PROTECTED]> wrote: > > I did a simple test like this on my save page: > > $comments = $_POST['comments']; > echo "".$comments.""; > ?> > > And it returns > > So, that should show me that there are no place holders, no characters, > and no carriage r

Re: [PHP] FINDER

2007-10-24 Thread David Giragosian
On 10/24/07, Emiliano Boragina <[EMAIL PROTECTED]> wrote: > > Hi everyone. > > > > I need to know how do I do a FINDER of clinics for zones. > > I am new in PHP, so my knowloge is not much. > > The user of this finder select the zone from the list, and click in the > button, and them show a list of

Re: [PHP] Transfer query result to another script

2007-11-01 Thread David Giragosian
On 11/1/07, C.R.Vegelin <[EMAIL PROTECTED]> wrote: > > Hi All, > > Q: Is it possible to transfer a query result to another script ? > For example with (fragments of) the following 2 scripts: > > Engine.php > > $result = mysqli_query($connect, $myquery); > if (!$result) error ... >

Re: [PHP] Including GD inside HTML code

2007-11-02 Thread David Giragosian
On 11/1/07, Instruct ICC <[EMAIL PROTECTED]> wrote: > > > > Alberto García Gómez wrote: > > > I trying to include some image generate for a function that use GD. > > > > > > eg.: > > > > > > function myfunct(){ > > > [MY_CODE] > > > } > > > > > > but when I call the function it generate me a lo

Re: [PHP] More info on timeout problem, with code

2007-11-06 Thread David Giragosian
On 11/5/07, Jon Westcot <[EMAIL PROTECTED]> wrote: > Hi all: > >As requested, here's the code: > > if(isset($_POST['process'])){ >$old_session_gc_maxlifetime = ""; >$old_max_execution_time = ""; >$old_max_input_time = ""; >$old_session_gc_maxlifetime = ini_set("session.gc_maxl

Re: [PHP] Help securing a server : Owned by W4n73d H4ck3r

2007-11-09 Thread David Giragosian
On 11/9/07, Daniel Brown <[EMAIL PROTECTED]> wrote: > > On Nov 9, 2007 9:27 AM, robert mena <[EMAIL PROTECTED]> wrote: > > Hi, > > > > One server that hosts several domains ended up with the message "Owned > > by W4n73d H4ck3r".While still performing an audit I am very > > confident that this w

Re: [PHP] Local vs Master Configure values

2007-11-09 Thread David Giragosian
On 11/9/07, Nathan Nobbe <[EMAIL PROTECTED]> wrote: > > On Nov 9, 2007 5:01 PM, Nathan Nobbe <[EMAIL PROTECTED]> wrote: > > On Nov 9, 2007 4:24 PM, tedd <[EMAIL PROTECTED]> wrote: > > > Hi gang: > > > > > > I'm confronting a safe_mode problem and have a question. > > > > > > My PHP Info states that

Re: [PHP] Question about arrays

2007-11-12 Thread David Giragosian
On 11/12/07, Jason Pruim <[EMAIL PROTECTED]> wrote: > > Hi Everyone, > > I have a question, and to avoid getting flammed until the morning, I > waited to ask until the end of my day :) Or near it at least. > > I have a small simple script I'm writing so that I can calculate how > much a certain num

Re: [PHP] IDE

2007-11-15 Thread David Giragosian
On 11/15/07, Jammer <[EMAIL PROTECTED]> wrote: > > Børge Holen wrote: > > On Thursday 15 November 2007 21:35:04 Jammer wrote: > >> Hi All, > >> > >> This is my first post here ... I'm very much a newbie to php but work > >> during the day using SQL Server, VS2005 and Foxpro. Looking to gen up > >>

Re: [PHP] tell me :which book is good for newman??

2007-11-17 Thread David Giragosian
On 11/17/07, joychen <[EMAIL PROTECTED]> wrote: > > tell me :which book is good for newman?? You mean paul?

Re: [PHP] two small issues with php mail

2007-11-19 Thread David Giragosian
On 11/19/07, Philip Thompson <[EMAIL PROTECTED]> wrote: > > On Nov 19, 2007 5:52 PM, Brad <[EMAIL PROTECTED]> wrote: > > > Why are you being to belligerent? > > English 101-104 I have aced. > > Top secret security clearance I maintain. > > Concatenate I know well (why would I combine the from, and

[PHP] Dynamic Display of Images Stored in DB

2007-11-28 Thread David Giragosian
Good Afternoon All, The recent threads about images got me to finally experiment with storing into and retrieving/displaying images from a database. Uploading and retrieval is fine, I'm just a bit uncertain about creating the dynamic display part. // getting the data out of the db $imageCountinDB

Re: [PHP] Dynamic Display of Images Stored in DB

2007-11-28 Thread David Giragosian
hat > your still trying to grok the basics of this - no offence intended) > > or have I misunderstood your question? > > David Giragosian wrote: > > Good Afternoon All, > > > > The recent threads about images got me to finally experiment with > storing > > into

Re: [PHP] Dynamic Display of Images Stored in DB

2007-11-29 Thread David Giragosian
On 11/28/07, Chris <[EMAIL PROTECTED]> wrote: > > > > In my solution, I use two scripts. One for showing the image true size > > and another for generating a thumbnail -- I may be wrong, but I think > > it's better to generate a thumbnail as needed on the fly than it is to > > store both images (la

Re: [PHP] Maps

2007-12-06 Thread David Giragosian
On 12/6/07, Richard Lynch <[EMAIL PROTECTED]> wrote: > > Yes, you can do that, and look at Yahoo! maps as an alternative. > > Same smell. :-) > > On Wed, December 5, 2007 12:27 pm, Robert Fitzpatrick wrote: > > Well, I have two clients that both want mapping for their sales > > people. > > I have b

Re: [PHP] temp tables mysql OT

2007-12-13 Thread David Giragosian
On 12/13/07, Robert Cummings <[EMAIL PROTECTED]> wrote: > > On Thu, 2007-12-13 at 10:14 -0500, tedd wrote: > > At 12:20 PM +0100 12/13/07, Zoltán Németh wrote: > > >2007. 12. 12, szerda keltezéssel 20.13-kor tedd ezt írta: > > > > I would like to create a temporary table to perform searches. > > >

[PHP] Multiple File Downloads

2007-12-14 Thread David Giragosian
I've used Richard Lynch's Blog example for forcing the download of an individual file. Is there a way to download multiple files in one go, short of zipping them first into a single file? Concepts / directional shoves appreciated. David

Re: [PHP] Multiple File Downloads

2007-12-14 Thread David Giragosian
On 12/14/07, Jason Pruim <[EMAIL PROTECTED]> wrote: > > > On Dec 14, 2007, at 3:37 PM, Daniel Brown wrote: > > > On Dec 14, 2007 3:32 PM, David Giragosian <[EMAIL PROTECTED]> > > wrote: > >> I've used Richard Lynch's Blog example for forcin

Re: [PHP] Multiple File Downloads

2007-12-14 Thread David Giragosian
On 12/14/07, Daniel Brown <[EMAIL PROTECTED]> wrote: > > On Dec 14, 2007 4:24 PM, Daniel Brown <[EMAIL PROTECTED]> wrote: > > On Dec 14, 2007 3:32 PM, David Giragosian <[EMAIL PROTECTED]> wrote: > > > > > I've used Richard Lynch's Blog examp

Re: [PHP] Multiple File Downloads

2007-12-14 Thread David Giragosian
On 12/14/07, Benjamin Darwin <[EMAIL PROTECTED]> wrote: > > Aww, we have to wait all the way to Monday? It's fun to sit back and > watch the conversations on here! > > And I call third-ed on that... is that the right word? > > --Ben > > On Dec 14, 2007 4:40 PM, Daniel Brown <[EMAIL PROTECTED]> wrot

Re: [PHP] Re: Multiple File Downloads

2007-12-15 Thread David Giragosian
On 12/15/07, Al <[EMAIL PROTECTED]> wrote: > > What are the files and what are you going to do with them at the client? They are going to be .csv files extracted from a DICOM treatment plan file. > If they are to be an image mosaic, then compose it first and then send it. > > If text docs, com

Re: [PHP] First stupid post of the year.

2008-01-02 Thread David Giragosian
On 1/2/08, Nathan Nobbe <[EMAIL PROTECTED]> wrote: > > On Jan 2, 2008 1:34 PM, tedd <[EMAIL PROTECTED]> wrote: > > > Hi gang: > > > > I have a > > > > $submit = $_POST['submit']; > > > > The string contains: > > > >        A        > > > > (it's there to make a submit button wider) > > > > How can

Re: [PHP] handling ' with mysql/php insert and select

2008-01-03 Thread David Giragosian
On 1/3/08, Adam Williams <[EMAIL PROTECTED]> wrote: > > In my form, I am parsing all the text inputs through > mysql_real_escape_string() before inserting the data. however, when I > look at the SQL query in PHP, when I type the word blah's to my text box > variable, and then insert it into mysql

Re: [PHP] uh oh, I defined a resoruce

2008-01-10 Thread David Giragosian
On 1/10/08, Eric Butera <[EMAIL PROTECTED]> wrote: > > On Jan 10, 2008 2:02 PM, Philip Thompson <[EMAIL PROTECTED]> wrote: > > On Jan 10, 2008, at 12:48 PM, Eric Butera wrote: > > > > > On Jan 10, 2008 1:33 PM, <[EMAIL PROTECTED]> wrote: > > >> I have been using define to create a constant for the

Re: [PHP] uh oh, I defined a resoruce

2008-01-10 Thread David Giragosian
On 1/10/08, Eric Butera <[EMAIL PROTECTED]> wrote: > > On Jan 10, 2008 2:28 PM, David Giragosian <[EMAIL PROTECTED]> wrote: > > > > On 1/10/08, Eric Butera <[EMAIL PROTECTED]> wrote: > > > > > > On Jan 10, 2008 2:02 PM, Philip Thompson <[EMA

Re: [PHP] uh oh, I defined a resoruce

2008-01-10 Thread David Giragosian
On 1/10/08, David Giragosian <[EMAIL PROTECTED]> wrote: > > On 1/10/08, Eric Butera <[EMAIL PROTECTED]> wrote: > > > > On Jan 10, 2008 2:28 PM, David Giragosian <[EMAIL PROTECTED] > > > wrote: > > > > > > On 1/10/08, Eric Butera <[E

Re: [PHP] Posting Summary for Week Ending 11 January, 2008: php-general@lists.php.net

2008-01-12 Thread David Giragosian
On 1/12/08, Scott Wilcox <[EMAIL PROTECTED]> wrote: > > well thats just no good is it :P > > Thats pretty funky, congrats on the concept and implementation :) > > Daniel Brown wrote: > > On Jan 11, 2008 4:11 PM, Jason Pruim <[EMAIL PROTECTED]> wrote: > > > >> Hate to shot a hole in your script Dan.

Re: [PHP] uh oh, I defined a resoruce

2008-01-13 Thread David Giragosian
On 1/13/08, Naz Gassiep <[EMAIL PROTECTED]> wrote: > > > >> While "global variables are good" in quotes did not return any results > >> from Google, "global variables are evil" in quotes only returned a > result > >> set of 4: > >> > >> Results *1* - *4* of *4* for *" global< > http://www.google.co

Re: [PHP] uh oh, I defined a resoruce

2008-01-13 Thread David Giragosian
On 1/13/08, Nathan Nobbe <[EMAIL PROTECTED]> wrote: > > the 2 problems that globals introduce are > >1. namespace collisions >2. point of origin problem > > where a namespace collision is the inconsistent use of a global > variable within an application > eg. > // one point in the applicat

Re: [PHP] Foreach

2008-01-17 Thread David Giragosian
On 1/17/08, mike <[EMAIL PROTECTED]> wrote: > On 1/17/08, Nathan Nobbe <[EMAIL PROTECTED]> wrote: > > > > $name = $_POST['name']; > > > if ($name) { > > > foreach ($name as $t) { > > > > > >echo "$t"; > > >} > > > >$order = $_POST['order']; > > >if ($order) { > > >foreac

Re: [PHP] Resetting drop-downlists in input-fields for texts

2008-01-21 Thread David Giragosian
On 1/21/08, Tor Vidvei <[EMAIL PROTECTED]> wrote: > > I'm developing a traning page for basic math. The answers are entered by > the user in simple text input fields and the same page is returned (after > having been processed by php) to the user with indications of correctness > or error on each

Re: [PHP] Search function not working...

2008-02-01 Thread David Giragosian
On 2/1/08, Jason Pruim <[EMAIL PROTECTED]> wrote: > > So I said in another thread that I would be asking another question > about functions... So here it goes, I am attempting to write a > function to search the database, which used to work just fine when I > wrote it without using a function (Woul

Re: [PHP] Search function not working...

2008-02-01 Thread David Giragosian
On 2/1/08, Jason Pruim <[EMAIL PROTECTED]> wrote: > > On Feb 1, 2008, at 2:20 PM, David Giragosian wrote: > > On 2/1/08, Jason Pruim <[EMAIL PROTECTED]> wrote: > > > > [snip long explanation of problem] > > > function search($searchvar, $tab

Re: [PHP] Search function not working...

2008-02-01 Thread David Giragosian
> > Jason, > > Untested, but try this... > > function search($searchvar, $table, $num_rows, $FName, $LName, $Add1, > $Add2) { >$qstring = "SELECT * FROM ".$table." WHERE FName like > '%$searchvar%' > or LName like '%$searchvar%' or Add1 like > '%$searchvar%' or Add2

Re: [PHP] problem with imagefontwidth function, It looks to be unavailable...

2008-02-07 Thread David Giragosian
On 2/7/08, Daniel Brown <[EMAIL PROTECTED]> wrote: > > On Feb 7, 2008 8:23 AM, Jochem Maas <[EMAIL PROTECTED]> wrote: > > Legolas wood schreef: > > > Hi > > > Thank you for reading my post > > > I am trying to run a php based application using php5 and apache. > > > but I receive an error like: > >

Re: [PHP] date() and wrong timezone (or time)

2008-02-07 Thread David Giragosian
On 2/7/08, Daniel Brown <[EMAIL PROTECTED]> wrote: > > On Feb 7, 2008 8:34 AM, Jochem Maas <[EMAIL PROTECTED]> wrote: > > Martin Marques schreef: > > >> see what you have as the value for the date.timezone ini setting. > > > > > > I've already checked that, and it's not set. > > > > it should be se

Re: [PHP] Name of variable to string

2008-02-08 Thread David Giragosian
On 2/8/08, Richard Lynch <[EMAIL PROTECTED]> wrote: > > On Fri, February 8, 2008 9:14 am, tedd wrote: > > From a variable with the name of $this_variable -- how do I get a > > string 'this_variable' ? > > You don't... > > Consider this: > > function foo($bar){ > //what would your function output?

Re: [PHP] Name of variable to string

2008-02-08 Thread David Giragosian
On 2/8/08, Eric Butera <[EMAIL PROTECTED]> wrote: > > On Feb 8, 2008 1:53 PM, David Giragosian <[EMAIL PROTECTED]> wrote: > > On 2/8/08, Richard Lynch <[EMAIL PROTECTED]> wrote: > > > > > > On Fri, February 8, 2008 9:14 am, tedd wrote: > >

[PHP] PHP JavaBridge on Windows XP Pro

2008-02-11 Thread David Giragosian
At the request of a supervisor who only programs in Java, I installed JavaBridge on an intranet web server running Apache 2.0.59 and PHP 5.1.6, and we've gotten a few PHP/Java applications up and running. Problem is, unless I'm having a senior moment, they only work if a user is logged into the se

Re: [PHP] help me out with form details converted into pdf file save it one place as well as send mail attactment

2008-02-13 Thread David Giragosian
On 2/13/08, pretty <[EMAIL PROTECTED]> wrote: > > hi any one help me out, im using cronofirm, i need to field form details will > converted into pdf as well as it will go maill attachment doing this in > joomla, atleast i need this only php with out joomla. It might be overkill for your purposes,

Re: [PHP] Question about PHP Licence and it's future!

2008-02-26 Thread David Giragosian
On 2/26/08, Robert Cummings <[EMAIL PROTECTED]> wrote: > > On Tue, 2008-02-26 at 12:30 -0500, tedd wrote: > > At 12:53 PM -0500 2/25/08, Andrés Robinet wrote: > > >*gringos* started calling me Rob long ago. It's shorter, it's easier to > > >pronounce and it's a short form for my last name (Robinet)

Re: [PHP] What design patterns do you usually use?

2008-02-27 Thread David Giragosian
On 2/27/08, Daniel Brown <[EMAIL PROTECTED]> wrote: > On Wed, Feb 27, 2008 at 6:46 AM, skylark <[EMAIL PROTECTED]> wrote: > > Hi all, > > > > What design patterns do you usually use? > > >This one: > >http://www.vam.ac.uk/vastatic/microsites/1486_couture/create.php > Somebody been thinkin

Re: [PHP] Are these Truthful Proof about PHP ??

2008-02-27 Thread David Giragosian
On 2/27/08, Zoltán Németh <[EMAIL PROTECTED]> wrote: > 2008. 02. 27, szerda keltezéssel 10.03-kor Dare Williams ezt írta: > > Dear Developers, > > > > http://msdn2.microsoft.com/en-us/library/aa479002.aspx > > I read an Article on the above Microsoft website stating the reason why > > to Migra

Re: [PHP] Are these Truthful Proof about PHP ??

2008-02-27 Thread David Giragosian
On 2/27/08, Stut <[EMAIL PROTECTED]> wrote: > On 27 Feb 2008, at 18:36, David Giragosian wrote: > > The comparisons are fairly biased against PHP, as expected from the > > source, and a number of links are broken, particularly the one > > offering 5 full applications

Re: [PHP] Are these Truthful Proof about PHP ??

2008-02-27 Thread David Giragosian
On 2/27/08, Robert Cummings <[EMAIL PROTECTED]> wrote: > > So is ASP really a framework? Did I get that wrong... I'm not always > right you know, especially about MS crap. > >From the first mentioned article: ASP.NET is part of the Microsoft .NET Framework. The .NET Framework is a feature of Wind

Re: [PHP] auto-wrap on posts

2008-02-28 Thread David Giragosian
On 2/28/08, Nathan Nobbe <[EMAIL PROTECTED]> wrote: > take a look here on the marc archives. > http://marc.info/?l=php-general&m=120415418217911&w=2 > > there are several lines that have 1 word only in them, some of the words > (for reference) are access, good, patterns, nested. > when i wrote the

Re: [PHP] auto-wrap on posts

2008-02-28 Thread David Giragosian
On 2/28/08, Jason Pruim <[EMAIL PROTECTED]> wrote: > > On Feb 28, 2008, at 10:25 AM, Ray Hauge wrote: > > > Nathan Nobbe wrote: > >> all, > >> a fellow poster has been kind enough to bring to my attention how > >> jacked > >> some of my posts appear. > >> i was manually formatting my posts, but it

Re: [PHP] auto-wrap on posts

2008-02-28 Thread David Giragosian
On 2/28/08, Daniel Brown <[EMAIL PROTECTED]> wrote: > On Thu, Feb 28, 2008 at 10:25 AM, Ray Hauge <[EMAIL PROTECTED]> wrote: > > Since we're talking about post issues I'll include this. I don't seem > > to receive my own emails. Does the list not send them back to you? I > > haven't been able

Re: [PHP] 2 Questions: Static variables and the nature of the online manual

2008-03-04 Thread David Giragosian
I would hazard a guess that the 'static' keyword and functionality comes from ANSI C. I just pulled "The C Programming Language" by Kernighan and Ritchie from the book case and it is described there in it. Essential book, by the way, IMHO. -- -David. When the power of love overcomes the love o

Re: [PHP] regular expressions question

2008-03-04 Thread David Giragosian
On 3/4/08, Adil Drissi <[EMAIL PROTECTED]> wrote: > Hi, > > Is there any way to limit the user to a set of characters for example say i > want my user to enter any character between a and z (case insensitive). And > if the user enters just one letter not belonging to [a-z], this will not be > ac

Re: [PHP] save image in database vs folder

2008-03-11 Thread David Giragosian
On 3/11/08, Daniel Brown <[EMAIL PROTECTED]> wrote: > On Tue, Mar 11, 2008 at 10:15 AM, Robert Cummings <[EMAIL PROTECTED]> wrote: > > > > On Tue, 2008-03-11 at 11:18 +, Richard Heyes wrote: > > > > some friend of mine ague about this matter, this morning. they say, > > saving > > > > image

Re: [PHP] strtotime( 'last Sunday' ) and republicans

2008-03-13 Thread David Giragosian
On 3/13/08, tedd <[EMAIL PROTECTED]> wrote: > At 10:43 AM -0500 3/12/08, Greg Donald wrote: > >No matter where we draw the borders or put the roads and highways, > >it's still just the one planet, with the same finite resources we all > >have to share. Being mad about globalization is pointless, i

Re: [PHP] Re: problem with this regex to remove img tag...

2008-03-18 Thread David Giragosian
On 3/16/08, Ryan A <[EMAIL PROTECTED]> wrote: > > Now that thats over... can anybody recommend a good starting point to learn > regex in baby steps? > > Cheers! > R Mastering Regular Expressions, by Jeffrey Friedl ISBN 0-596-00289-0 -- -David. When the power of love overcomes the love of powe

Re: [PHP] Fastest way to get table records' number

2008-03-19 Thread David Giragosian
Doesn't the 1 in "Select count(1) from table" refer to the first column in the table, like order by 1 asc? David -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] How to install PHP 5.x on Windows Server 2000 with IIS5and MySQL 5.x

2008-03-29 Thread David Giragosian
On 3/29/08, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > Shawn McKenzie wrote: > > >[EMAIL PROTECTED] wrote: > > > > > >>Shawn McKenzie wrote: > >> > >> > >> > >>>Paul Scott wrote: > >>> > >>> > >>> > >>> > On Thu, 2008-03-27 at 10:32 -0400, Wolf wrote: > > > > > >I'd

Re: [PHP] Database abstraction?

2008-04-16 Thread David Giragosian
On 4/16/08, Jason Pruim <[EMAIL PROTECTED]> wrote: > > Hi Everyone! > > I'm back with yet another question But getting closer to sounding like > I know what I'm talking about and that's all thanks to all of you. A free > beer (Or beverage of choice)* for everyone who has helped me over the year

Re: [PHP] Memory limit of 8 MB not enough

2008-04-16 Thread David Giragosian
On 4/16/08, tedd <[EMAIL PROTECTED]> wrote: > > At 10:53 AM -0400 4/16/08, Andrew Ballard wrote: > > > On Wed, Apr 16, 2008 at 9:59 AM, tedd <[EMAIL PROTECTED]> wrote: > > > > > I saw one the other day that caught my eye -- will look into it. > > > > > > > > The first problem I see implementing t

Re: [PHP] Alter Table newbie help needed ...

2008-04-20 Thread David Giragosian
On 4/20/08, revDAVE <[EMAIL PROTECTED]> wrote: > > On 4/19/2008 2:37 PM, "Jason Norwood-Young" <[EMAIL PROTECTED]> > wrote: > > > Might be obvious but you are doing "mysql_query($sql);", right? > > Hello Jason, > > Thanks - Your idea worked well - for a while - but then I ran into > trouble... > >

Re: [PHP] Denver PHP opportunity - Senior Software Engineers

2008-04-21 Thread David Giragosian
On 4/21/08, Nick Gasparro <[EMAIL PROTECTED]> wrote: > Hey Richard, > > Not sure how to respond to your question other than to say yes they are > profitable. They are an established organization that has been around since > 2003, they have upwards of 60 million users and tons of traffic. They are

Re: [PHP] Re: php framework vs just php?

2008-04-23 Thread David Giragosian
At the risk of extending this already looong thread... Ah, screw it. I actually read all of the Radicore documentation on Monday following someone's suggestion last week about module access control. That was before this thread got started, BTW. Now I'm not a Framework guy at all, and I don't know

Re: [PHP] Re: how to use passthru ()

2008-04-24 Thread David Giragosian
On 4/24/08, M. Sokolewicz <[EMAIL PROTECTED]> wrote: > J. Manuel Velasco - UBILIBET wrote: > > Hello, > > > > I have two perl scripts that runs fine in the shell. But when I build a > page with them, only in one case the results are shown in the other case i > see a blank page. > > > > I have done

Re: [PHP] Re: how to use passthru ()

2008-04-24 Thread David Giragosian
On 4/24/08, Eric Butera <[EMAIL PROTECTED]> wrote: > On Thu, Apr 24, 2008 at 9:14 AM, J. Manuel Velasco - UBILIBET > <[EMAIL PROTECTED]> wrote: > > > > No friend, > > > > I said, the perl scripts work fine. The problem is to show the result in > > the site. > > > > One of them the result is show

Re: [PHP] Re: Where to start!

2008-05-09 Thread David Giragosian
I doubt this will have any sway on the contributors to this thread, but I ran across a db normalization "rule of thumb" yesterday in a tutorial for another language: "Normalize until it hurts; De-normalize until it works." I lean towards finding a middle ground, so this makes sense to me. --David

Re: [PHP] Semi-OT: PHP Login with client security

2008-05-19 Thread David Giragosian
On 5/19/08, Tim Thorburn <[EMAIL PROTECTED]> wrote: > Wolf wrote: > > Tim Thorburn <[EMAIL PROTECTED]> wrote: > > > > > Hi all, > > > > > > Having a slight problem with a demo I gave at a clients last week - > looking for a little advise. Part of my demo involved a password protected > area -

Re: [PHP] Avoid object twice

2008-06-04 Thread David Giragosian
On 6/4/08, Yui Hiroaki <[EMAIL PROTECTED]> wrote: > Uhmm! > > It is sure that function can call from other file. > But it is NOT EXECUTE mail() function. > > How mail function be execute! > > Please do more advice. > You may tire of this mail. Yes. David -- PHP General Mailing List (http://www.

Re: [PHP] Canvas examples

2008-06-15 Thread David Giragosian
On 6/15/08, Richard Heyes <[EMAIL PROTECTED]> wrote: > > Does anyone have any more examples of the new canvas element they've > written? > > FF only: http://www.phpguru.org/canvas.html > > -- That's very cool, Richard. --David.

Re: [PHP] [X-POST] Fastest way to dump this huge table

2007-05-02 Thread David Giragosian
On 5/2/07, Richard Davey <[EMAIL PROTECTED]> wrote: Brian Dunning wrote: > I have a huge MySQL table, 2.1 million records, 200MB. Once a week I > need to dump it in CSV format and zip the file. > > This is not on my server, and it's in production, so I don't want to > risk testing different met

Re: [PHP] INSERT Array Values into mySQL Table

2007-05-02 Thread David Giragosian
On 5/2/07, Rahul S. Johari <[EMAIL PROTECTED]> wrote: Ave, Here¹s the thing, I¹ve got an Array which has it¹s own set of Keys => Values. I¹m using foreach() to read the Keys => Values like this: function pr1($var) { foreach ($var as $k => $v) { echo ³$k => $v²;

Re: [PHP] Cannot access file on Network Drive (Windows 2003)

2007-05-24 Thread David Giragosian
On 5/24/07, Richard Lynch <[EMAIL PROTECTED]> wrote: On Wed, May 23, 2007 1:46 pm, Rahul Sitaram Johari wrote: > Apache 2.2, PHP5 & mySQL 5 on Windows 2003. > I have some files sitting on a Network Drive accessible on the Windows > 2003 > Server. But my php script is not able to open the files.

Re: [PHP] file_get_contents and https

2007-05-31 Thread David Giragosian
On 5/31/07, Stut <[EMAIL PROTECTED]> wrote: Bob Hanson wrote: > Thanks, Jay. > > I tried it first with a simple "http://"; call, and that worked fine. So > unless "https:..." requires something additional in the way of > arguments, that doesn't seem to be the issue. > > I'm hoping someone who ha

Re: [PHP] Re: find (matching) person in other table

2007-05-31 Thread David Giragosian
On 5/31/07, Afan Pasalic <[EMAIL PROTECTED]> wrote: Jared Farrish wrote: > On 5/30/07, Afan Pasalic <[EMAIL PROTECTED]> wrote: > email has to match "in total". [EMAIL PROTECTED] and [EMAIL PROTECTED] >> are NOT the same in my case. >> >> thanks jared, > > If you can match a person by their ema

Re: [PHP] Question on Connecting to Microsoft SQL Server from PHP

2007-06-12 Thread David Giragosian
Tommy, Since SQL Server may loom on my horizon, I've tried connecting to a SQL Server 2000 db on my network. I got it to work _without_ any port after the IP in mssql_connect(). I'm using PHP 5.2.0 from windows XP to a Windows 2000 box running SQL Server. I used SQL Server Authentication to creat

Re: [PHP] Booking form, please

2007-06-14 Thread David Giragosian
All our folks here love MRBS. http://webscripts.softpedia.com/script/E-Commerce/MRBS-24375.html Just substitute 'computers' for locations/rooms... David On 6/14/07, Timothy Murphy <[EMAIL PROTECTED]> wrote: I'm looking for a form to allow people to book an hour on a computer system. Is there

Re: [PHP] UI toolkit

2007-06-25 Thread David Giragosian
On 6/24/07, Nathan Nobbe <[EMAIL PROTECTED]> wrote: Darren, I recently discovered php5 bindings to qt4 http://www.php-qt.org although qt is currently leveraged by kde primarily it has been converted to a cmake build system instead of a make build system which supposedly will enable cross platf

  1   2   >