barkster Posted June 22, 2006 Share Posted June 22, 2006 How do I get the pagename and any parameters that are in the url? I can get the pagename with basename($_SERVER['PHP_SELF']); but it doesn't catch any parameters like pagename.php?lookhere=TrueThanks Link to comment https://forums.phpfreaks.com/topic/12668-getting-current-page-name-and-parameters/ Share on other sites More sharing options...
Eric_Ryk Posted June 22, 2006 Share Posted June 22, 2006 [!--quoteo(post=386950:date=Jun 22 2006, 04:07 PM:name=barkster)--][div class=\'quotetop\']QUOTE(barkster @ Jun 22 2006, 04:07 PM) [snapback]386950[/snapback][/div][div class=\'quotemain\'][!--quotec--]How do I get the pagename and any parameters that are in the url? I can get the pagename with basename($_SERVER['PHP_SELF']); but it doesn't catch any parameters like pagename.php?lookhere=TrueThanks[/quote]$_GET["lookhere"] would automatically contain the value of True. Use $_GET to get any variables from the URL. Link to comment https://forums.phpfreaks.com/topic/12668-getting-current-page-name-and-parameters/#findComment-48584 Share on other sites More sharing options...
barkster Posted June 22, 2006 Author Share Posted June 22, 2006 I understand how to get parameters I want the get the url including the parameters. Not just the parameter. I want to get the filename and any parameters that are appended. Link to comment https://forums.phpfreaks.com/topic/12668-getting-current-page-name-and-parameters/#findComment-48617 Share on other sites More sharing options...
kenrbnsn Posted June 23, 2006 Share Posted June 23, 2006 [b]$_SERVER["REQUEST_URI"][/b] should contain what you're looking for.[b]$_SERVER["QUERY_STRING"][/b] contains the just the query string, i.e. the part after the "?", but not including the "?".Ken Link to comment https://forums.phpfreaks.com/topic/12668-getting-current-page-name-and-parameters/#findComment-48683 Share on other sites More sharing options...
michaellunsford Posted June 23, 2006 Share Posted June 23, 2006 good reference:[a href=\"http://us3.php.net/manual/en/reserved.variables.php\" target=\"_blank\"]http://us3.php.net/manual/en/reserved.variables.php[/a] Link to comment https://forums.phpfreaks.com/topic/12668-getting-current-page-name-and-parameters/#findComment-48701 Share on other sites More sharing options...
barkster Posted June 25, 2006 Author Share Posted June 25, 2006 Thanks that was what I was looking for. Link to comment https://forums.phpfreaks.com/topic/12668-getting-current-page-name-and-parameters/#findComment-49414 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.