Re: [PHP] Capturing the url in the location bar

2001-05-15 Thread Thomas Deliduka
On 5/15/2001 9:27 AM this was written: Is there a way of capturing the entire url contianed in the location bar within a variable? $location = getenv(HTTP_HOST) . getenv(REQUEST_URI); Or if your system handles it do this: $location = $HTTP_HOST . $REQUEST_URI; This will concatinate the

Re: [PHP] Capturing the url in the location bar

2001-05-15 Thread Jason Brooke
$variable = http://;. $HTTP_HOST. $REQUEST_URI; Is there a way of capturing the entire url contianed in the location bar within a variable? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To