What is the best way to go back to a page where a form was submitted?

For example, if i send some data via POST to "save-data.php" and that file in turn uploads the posted data to a database how can i then return to the page that initially sent the POST data if the url is not known?

I'm not sure I have explained right.

MORE DETAIL:

the data is posted by an admin user only. Im using this code for an editable navigation bar stored in a database. The admin can edit the label and href then store it. The trouble is that it can be edited from any page in the site so long as you are logged in as an admin. When you hit a save button (on the same page as the navigation bar) it posts the data to a php script which inserts/updates the database. I just need to send the user back to the page where save was clicked.

link|improve this question

As already mentioned by @Emil Vikström the $_SERVER['HTTP_REFERER'] is your best choice if URL can not be passed with the form. However, if you can, the pass URL together with the other form fields (hidden field) -- use JavaScript to populate that field's value dynamically (grab window.location before submitting the form). – LazyOne Jul 10 '11 at 15:30
feedback

2 Answers

up vote 1 down vote accepted

If this is dynamic, you could pass a hidden input value:

<input type="hidden" name="return" value="myfile.php" />

Not a fan of this as it can be changed by the user. But I do stuff like that in my applications a lot but its more like this:

<input type="hidden" name="return_action" value="detailview" />

Then do a lot of stuff to validate the action and then permissions involved (larger conversation than this.)

If this is a static return and you control it, you can simply do this:

header('Location: myfile.php');
exit();

Just add that after your save and your fine.

Edit Sorry just noticed if the URL is not known. Do you control all parts? Which parts do you control and to what level? I am assuming your not just letting everyone post data to a URL?

link|improve this answer
the data is posted by an admin user only. Im using this code for an editable navigation bar stored in a database. The admin can edit the label and link then store it. The trouble is that it can be edited from any page in the site so long as you are logged in as an admin. When you hit a save button (on the same page as the navigation bar) it posts the data to a php script which inserts/updates the database. I just need to send the user back to the page where save was clicked. – Jai Jul 10 '11 at 14:50
Use $_SERVER['PHP_SELF'] as the value of a hidden field to redirect back to. Since you control the form, no need for javascript. – iLLin Jul 11 '11 at 16:34
feedback

You can do it with JavaScript:

window.onload = history.go(-1);

It's impossible to do in PHP. You need to know the referring URL to send someone there. $_SERVER['HTTP_REFERER'] may contain the referrer, but it's not guaranteed to be sent (some firewalls and browsers removes the referer header).

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.