lAZLf Posted December 29, 2009 Share Posted December 29, 2009 So on my website I have implemented paging. But with the links I've run into a problem. When I use: $self = $_SERVER['PHP_SELF']; I don't get the dynamic "information". Basicly I only get "index.php" instead of "index.php?page=restaurants&type=comments&num=1" How could I get the complete URL of the current page? Quote Link to comment https://forums.phpfreaks.com/topic/186616-get-the-current-url-of-dynamic-pages/ Share on other sites More sharing options...
mikesta707 Posted December 29, 2009 Share Posted December 29, 2009 the SERVER array has a lot of defined constants. The one you are looking for is QUERY_STRING echo $_SERVER['PHP_SELF'] . "?" . $_SERVER['QUERY_STRING']; Quote Link to comment https://forums.phpfreaks.com/topic/186616-get-the-current-url-of-dynamic-pages/#findComment-985637 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.