bilis_money Posted August 5, 2006 Share Posted August 5, 2006 ok, let say i have a web page namely mypage1.phpnow also let say we are currently in mypage1.php,how could i get its current URL, using PHP?thanks in advance. Quote Link to comment https://forums.phpfreaks.com/topic/16635-how-to-get-the-current-url-of-the-current-page/ Share on other sites More sharing options...
xec Posted August 5, 2006 Share Posted August 5, 2006 hii , just try echo $_SERVER['SCRIPT_NAME'];and u will get what you want.... :) Quote Link to comment https://forums.phpfreaks.com/topic/16635-how-to-get-the-current-url-of-the-current-page/#findComment-69765 Share on other sites More sharing options...
ignace Posted August 5, 2006 Share Posted August 5, 2006 This depends if you wish to use it into an include I'd rather use[code]echo $_SERVER['SCRIPT_FILENAME'];// returns absolute path c:\path\to\script\filename.php[/code] Quote Link to comment https://forums.phpfreaks.com/topic/16635-how-to-get-the-current-url-of-the-current-page/#findComment-69767 Share on other sites More sharing options...
ronverdonk Posted August 5, 2006 Share Posted August 5, 2006 And if you want the full http for use in a link (e.g. in an email):[code]$url = "http://" . $_SERVER['HTTP_HOST'] . $_SERVER['PHP_SELF']; // gives http://www.domain.name/mypage1.php[/code] Quote Link to comment https://forums.phpfreaks.com/topic/16635-how-to-get-the-current-url-of-the-current-page/#findComment-69771 Share on other sites More sharing options...
bilis_money Posted August 5, 2006 Author Share Posted August 5, 2006 thanks guys, it helped me so much!THANKS! many thanks!GOD BLESS you all! Quote Link to comment https://forums.phpfreaks.com/topic/16635-how-to-get-the-current-url-of-the-current-page/#findComment-69773 Share on other sites More sharing options...
wildteen88 Posted August 5, 2006 Share Posted August 5, 2006 If you want to get the url parameters too (eg index.php?var=foo&var2=bar) you can use $_SERVER['QUERY_STRING'] Quote Link to comment https://forums.phpfreaks.com/topic/16635-how-to-get-the-current-url-of-the-current-page/#findComment-69793 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.