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.
$_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 (grabwindow.locationbefore submitting the form). – LazyOne Jul 10 '11 at 15:30