RE: [PHP] Processing Form Data /w $_POST

2003-06-19 Thread Henning Sittler
it's in the manual, read here: <http://ca.php.net/manual/en/control-structures.foreach.php> Henning Sittler www.inscriber.com -Original Message- From: Kyle Babich [mailto:[EMAIL PROTECTED] Sent: Thursday, June 19, 2003 12:43 PM To: [EMAIL PROTECTED] Subject: [PHP] Processin

[PHP] Processing Form Data /w $_POST

2003-06-19 Thread Kyle Babich
I have a form (setup.php) that passes values to processSetup.php when they are written into setup.txt. I'm trying to instead of writing every idividual value into setup.txt from setup.php, write a loop that will take as many values as there are in the $_POST array and write them all into a sing

Re: [PHP] processing form data

2001-02-20 Thread John Vanderbeck
Try changing your echo line to: echo ("Welcome $HTTP_POST_VARS[username]!"); - John Vanderbeck - Admin, GameDesign > > > > echo ("Welcome, " . $username . "!") > ?> > > > > Thanks in advance > Denis > > > > > -- > PHP General Mailing List (http://www.php.net/) > To unsubscribe, e-m

Re: [PHP] processing form data

2001-02-20 Thread Thomas Deliduka
Correction To quote from a previous e-mail from some one else: If register_globals is true, the variable is also available in the global scope as $rosen (as in Rosen's example). If this does not work, it would seem that register_globals is not set [in the php.ini file]. On 2/20/01 9:16 AM

Re: [PHP] processing form data

2001-02-20 Thread Thomas Deliduka
Change your form method to GET and find out what's being passed. Check your php.ini file. I think it's the "track vars" command that determines whether the variables will be parsed on the next page. On 2/20/01 9:16 AM this was written: > I am new to php4 which I am running on an intel machine w

[PHP] processing form data

2001-02-20 Thread Denis L. Menezes
Hello friends. I am new to php4 which I am running on an intel machine with NT4 sp6 and IIS4. I have 2 forms name.php and username.php When I run the name.php, and click "submit data" button, the username.php does not appear. I have both the files in the same directory which is c:\inetpub\wwwroo