Hello again.
I have the following code:
$array = parse_url($_SERVER['HTTP_REFERER']);
$Ur = $array['host'];
which displays the domain just fine, but when I use this with sessions, it doesn't work. Also, I tested it with gettype and it returns Null? I thought it was an array?
Anywho, how do I go about converting the above $Ur into a string?
Cheers!