|
Posted by Michael Martinek on 11/27/07 12:44
>
> dunno why before didn't work
>
> Tks a lot, nik
If the page is submitted with a POST method, then your values will be
available in $_POST. If it's submitted with a GET, or blank method
then the values will be available in $_GET. In most cases, you can
just use $_REQUEST, which will access $_GET, $_POST, $_COOKIE globals.
I believe the order in which $_REQUEST is populated with is defined in
the PHP configuration. In most cases, however, you will not have
colliding $_GET and $_POST names; nor colliding $_COOKIE names.
Navigation:
[Reply to this message]
|