0

Even if they are quite different I'm going to compare to php predefined variables:

$_SERVER['HTTP_REFERRER']

$_SERVER['PHP_SELF']
  • the first is giving me the 'previous page' including the GET parameters (Ex. mypage.php?id=1)

  • the second one is returning let's say the 'barebone' structure of the url (Ex.mypage.php)

IS THERE ANY WAY I CAN STORE THE CURRENT PAGE PLUS THE GET PARAMETERS?

thanks

Luca

luca
  • 36,606
  • 27
  • 86
  • 125

1 Answers1

3

You want $_SERVER["REQUEST_URI"].

Ignacio Vazquez-Abrams
  • 776,304
  • 153
  • 1,341
  • 1,358