The title of this question kind of explains my question. How do I redirect the PHP page visitor back to their previous page with the header( "Location: URL of previous page" );
|
|
|
try:
Note that this may not work with secure pages (HTTPS) and it's a pretty bad idea overall as the header can be hijacked, sending the user to some other destination. The header may not even be sent by the browser. Ideally, you will want to either:
|
|||||||||||||||
|
|
You have to save that location somehow. |
|||
|
|
|
Its so simple just use this
Its working fine for me |
|||||
|
|
Storing previous url in a session variable is bad, because the user might right click on multiple pages and then come back and save. unless you save the previous url in the session variable to a hidden field in the form and after save header( "Location: save URL of calling page" ); |
|||
|
|
|
you have to store the previous visited url. use $_SESSION for both storing and retrieving it |
|||||
|
|
Add the follwing to the top of your page. it'll work
|
|||
|
|
index.php is the page where you want to redirect I hope this will help you. |
||||
|
|