Retreive data...
Moderator: General Moderators
Retreive data...
Is their a way to get the information from the address bar?
Re: Retreive data...
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'];