Re: [PHP] why my php can not get values from Form?

2002-07-18 Thread Thomas Edison Jr.
Simple.. just edit your php.ini file in your windows directory. Search for register_globals .. it will have Off in front of it.. switch it to On T. Edison jr. --- ram friend [EMAIL PROTECTED] wrote: hello, I have just installed apache+php4, but my php can not get values from form? what's

RE: [PHP] why my php can not get values from Form?

2002-07-18 Thread skeller
I have just installed apache+php4, but my php can not get values from form? what's wrong? Before you can use the variables, you have to make the accessible to PHP. Try putting this at the top of your welcome.php file: ? extract($HTTP_POST_VARS); ? -- The Health TV Channel,

Re: [PHP] why my php can not get values from Form?

2002-07-17 Thread Jadiel Flores
Probably you don't have the Register Global turned on in your php.ini, try using $_GET['usernm'] and $_GET['passwd'] or change your php.ini At 01:41 p.m. 07/18/2002 +0800, you wrote: hello, I have just installed apache+php4, but my php can not get values from form? what's wrong? following is

RE: [PHP] why my php can not get values from Form?

2002-07-17 Thread Balaji Ankem
Enable Rigister_globals to On in php.ini file and then try. Best Regards Balaji -Original Message- From: ram friend [mailto:[EMAIL PROTECTED]] Sent: Thursday, July 18, 2002 11:12 AM To: [EMAIL PROTECTED] Subject: [PHP] why my php can not get values from Form? hello, I have just