Retreive data...
Posted: Sun Nov 27, 2005 3:49 pm
Is their a way to get the information from the address bar?
A community of PHP developers offering assistance, advice, discussion, and friendship.
http://forums.devnetwork.net/
You can't read what the user typed in at a given moment, but you can use the following to find what URL is currently being called:shoxlx wrote:Is their a way to get the information from the address bar?
Code: Select all
$url = $_SERVER['PHP_SELF'].'?'.$_SERVER['QUERY_STRING'];