|
Posted by Michael Fesser on 01/08/07 19:13
..oO(chris_fieldhouse@hotmail.com)
>Checking the "sizeof($_GET)" shows that the values are there
if ($_GET) {...}
is enough, you don't need the sizeof() there.
>and I can
>access them using $_GET['<whatever>'] if I know the name of the value,
>but I want to be able to show the parameters, both key and value,
>passed in the URL.
>
>Can someone help?
>Is the $HTTP_GET_VARS not supportted in PHP5, or am I using it wrong?
>Any advice would be appreciated.
Use $_GET/$_POST, not the old HTTP_* arrays. They can be turned off in
recent PHP versions.
Micha
Navigation:
[Reply to this message]
|