Jump to content

PHP_SELF not including info appended to URL?


galvin

Recommended Posts

If I have this code throughout my website...

	$_SESSION['currentpage']=$_SERVER['PHP_SELF'];

 

I'm finding that if the URL is "mypage.php?id=1", then $_SERVER['PHP_SELF'] only returns "mypage.php" (it excludes anything appended to the end of the URL).

 

Is that right?  If so, how can I preserve the full URL (i.e. including the stuff after the question mark)

 

 

Link to comment
Share on other sites

php apparently changed the behavior of $_SERVER['PHP_SELF'] (with out apparently telling anyone, I could find no documentation in the change log.) It used to include the URL query string, but currently does not.

 

You should use $_SERVER['QUERY_STRING'] to get the part of the URL after the ?

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.