I have been looking but can't seem to find how to grab the Full URL, that includes http://www.something.com/something.php.
Is their a way to do this in PHP?
$_SERVER['REQUEST_URI'] might work 😉
<? $a = "http://".$_SERVER['SERVER_NAME']; $b = $_SERVER['PHP_SELF']; $c = "?".$_SERVER['QUERY_STRING']; $d = "$a$b$c"; echo $d; $e = $_SERVER['REQUEST_URI']; echo "<br>$a$e"; ?>
Cheers.