Hey, I'm having trouble retrieving a variable from a URL:
http://mydomain.com/?user=%n
by the way this is a link in AIM,
anyone know how to retreive it?
Not really sure what you're asking... But if you want to pull the contents of the variable 'user' out of a url you do it something like this: http://yourdomain.com?user=hello
$temp = $_GET['user'] ; echo $temp ;
thats it... thanks bro