What would be the code to use to get the "thisstring" out of this url: http://www.url.com/?thisstring
I'm sure this could be done more efficently but.......... foreach ($_GET as $k=>$v) { print $k; } Code (markup):
that site is probably using mod_rewrite so the querystring itself is kind of obsfucated(spelling?), or hidden, normally you get the querystring through $_GET['var_name'] but if you dont know what their names are(which is kind of weird) you can use the code above provided by matthewrobertbell