I know $php_self refreshes the same page, but is there an easy way to refresh the same page WITH all the url passed variables intact?
try
$SERVER['PHP_SELF']$SERVER['QUERY_STRING'] or maybe $SERVER['PHP_SELF'] . $SERVER['QUERY_STRING']
you might get away with $_SERVER[HTTP_REFERER] i believe that includes the querystring.
I think $REQUEST_URI might get you there too...
thanks, the $REQUEST_URI was exactly what I needed.