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? 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']; 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
Archived
This topic is now archived and is closed to further replies.