Reply to Re: checking if any get variables are parsed
Posted by Joe Estock on 12/18/03 11:50
monomaniac21 wrote:
> is there a way of checking for the existence of any get variables (i.e.
> unnamed)?
>
Try var_dump($_GET); If you want to see _ALL_ request variables then you
could do var_dump($_REQUEST). The same holds true for cookies and sessions.