How do I remember a url in php to serve it to a user after authentication. The idea is the user will request the url but while unauthenticated. In this case, I forward him to the login page, but what's the best practice to save that url so I can serve it to him once authenticated. I thought about saving it in session variables, but not sure about the implementation. Are there best practices for this?
|
1
|
|
|
|
|
|
When the user goes to ProtectedPage.php
LoginView.php
LoginAction.php
|
|||
|
|
|
|
Put it in a hidden field in the form or save it to a session variable. Example login.php?l=account.php (where
action/login.php
|
||||||||||||||||||
|
