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 dosent print anything in the action of the
> form and the
Because register globals is disabled you ha
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 dosent print anything in the action of the form
That's because register_global
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?
if(array_key_exists('formfieldnamegoeshere',$_POST)){
print $_POST['formfieldnamegoeshere'];
}
?>
Chris Jackson wrote:
I
3 matches
Mail list logo