Re: [PHP] Form variables not working

2002-11-16 Thread Leif K-Brooks
Because it isn't? Instead of echoing $PHP_SELF, echo $_SERVER['PHP_SELF']. With the $_POST problem, it's complaining that you're using a variable that isn't defined. Use? ?php if(array_key_exists('formfieldnamegoeshere',$_POST)){ print $_POST['formfieldnamegoeshere']; } ? Chris Jackson

Re: [PHP] Form variables not working

2002-11-16 Thread Ernest E Vogelsinger
At 17:36 16.11.2002, Chris Jackson said: [snip] I am havein troubles gettin my form variables to work. The register_globals in php.ini is set to its default of off. the ?php echo $PHP_SELF ? dosent print anything in the action of the form That's because

Re: [PHP] Form variables not working

2002-11-16 Thread Jason Wong
On Sunday 17 November 2002 00:36, Chris Jackson wrote: I am havein troubles gettin my form variables to work. The register_globals in php.ini is set to its default of off. [snip] the ?php echo $PHP_SELF ? dosent print anything in the action of the form and the Because register globals is