Here is an attempt that didn't work...
Code: Select all
$thisurl = $_SERVER['REQUEST_URI'];
if (preg_match("/?/", $thisurl)) {echo 'HTTP Query detected!';}
else {echo 'no HTTP query detected';}Moderator: General Moderators
Code: Select all
$thisurl = $_SERVER['REQUEST_URI'];
if (preg_match("/?/", $thisurl)) {echo 'HTTP Query detected!';}
else {echo 'no HTTP query detected';}