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.