monomaniac21 wrote:[color=blue]
> is there a way of checking for the existence of any get variables (i.e.
> unnamed)?
>[/color]
Try var_dump($_GET) ; If you want to see _ALL_ request variables then you
could do var_dump($_REQU EST). The same holds true for cookies and sessions.
Comment