3
thanks for the quick reply.
unfortunately it didn't seem to work, but i was able to find something that did in another forum.
For the unfortunate IIS user's future reference, with some slight modification, this will return the query string only.
if(!isset($_SERVER['REQUEST_URI'])) {
$_SERVER['REQUEST_URI'] = substr($_SERVER['argv'][0], strpos($_SERVER['argv'][0], ';') + 0);
}