How To get the url of last page in php?


In php to find the url of last page on a current page.

You should use “$_SERVER['HTTP_REFERER']”

$lastPageUrl = $_SERVER['HTTP_REFERER'];

Comments