Is it possible to pass a string through a URL without using a variable name? example: http://somesite.com/?foo
As an alternative to parsing the URL for strings beyond the "?", how would I refer to "foo"?
You can get it in $_SERVER['QUERY_STRING']
Diego
Ah, thanks!