Lunardesparity

Is there a way to let Jquery know which Php page was visited last?

Asked by Lunardesparity 2 years ago jquery php


Themans
0
 
You could assign the pages a session:

$_SESSION["page_visited"] = "xx.php";

All you'd have to do is use the session_start on the pages and then redirect to the relevant page:

Header('Location: www.yourwebpage.com'$_SESSION["page_visited"]);

by Themans 2 years ago

Answer this question

Is there a way to let Jquery know which Php page was visited last?

0 errors found:

 
0