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

2003-06-19 Thread Henning Sittler
it's in the manual, read here: 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] Processing Form Data

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