Liquid Fire Posted January 6, 2007 Share Posted January 6, 2007 Not sure if php can do this or if i need to use javascript but how can i get the full url of the previous page? I need to for a redirect on my site. Link to comment https://forums.phpfreaks.com/topic/33114-getting-addres-of-previous-page/ Share on other sites More sharing options...
Hypnos Posted January 6, 2007 Share Posted January 6, 2007 $_SERVER['HTTP_REFERER'] Link to comment https://forums.phpfreaks.com/topic/33114-getting-addres-of-previous-page/#findComment-154289 Share on other sites More sharing options...
taith Posted January 6, 2007 Share Posted January 6, 2007 [code]<?function get_referrer(){ if(!$ref=@$HTTP_REFERER) $ref=$_SERVER['HTTP_REFERER']; return $ref;}?>[/code] Link to comment https://forums.phpfreaks.com/topic/33114-getting-addres-of-previous-page/#findComment-154291 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.