Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am using a form to "Rate" a page. This form "posts" data to a php script elsewhere. I simply want to display a link after the form is processed which will bring the user back to previous page. Can I do this using javascript in my php script?

GF

share|improve this question

4 Answers

up vote 10 down vote accepted

You can use a link to invoke history.go(-1) in Javascript, which is essentially equivalent to clicking the Back button. Ideally, however, it'd be better to just create a link back to the URL from whence the user was posted to the form - that way the proper "flow" of history is preserved and the user doesn't wonder why they have something to click "Forward" to which is actually just submitting the form again.

share|improve this answer
+1, Deleted my answer, yours is much better than mine. Good answer. – Anthony Forloney Mar 30 '10 at 20:47
How do I use a link to invoke that piece of javascript? – Grunge Freak Mar 30 '10 at 20:50
<a href="javascript:history.go(-1)">link text here...</a> – Amber May 6 at 14:25

Depends what it is that you're trying to do it with. You could use something like this:

echo "<a href=\"javascript:history.go(-1)\">GO BACK</a>";

That's the simplest option. The other poster is right about having a proper flow of history but this is an example for you.

Just edited, orig version wasn't indented and looked like nothing. ;)

share|improve this answer
helped me much. great +1ed – jeni Jul 28 '11 at 3:56
@dscher Perfect answer bro, I was looking for something like this and fortunately found your answer. – Vishmay_Patel-Murdock Apr 16 at 6:38

You specifically asked for JS solutions, but in the event that someone visits your form with JS disabled a PHP backup is always nice:

when the form loads grab the previous page address via something like $previous = $_SERVER['HTTP_REFERER']; and then set that as a <input type="hidden" value="$previous" /> in your form. When you process your form with the script you can grab that value and stick it in the header("Location:___") or stick the address directly into a link to send them back where they came from

No JS, pretty simple, and you can structure it so that it's only handled if the client doesn't have JS enabled.

share|improve this answer

If your web-server correctly redirects you to a new page after you made a post, the regular "back" button on the browser will work. Or the "history.go(-1)" in javascript. This will produce a filled out form.

However, if the server just returns new content without redirecting - then history.go(-1) is not going to help you. At that point you have lost your form.

If you just want to simply go back to the previous url - just link to it with an A HREF tag. That will show you an empty form.

share|improve this answer
PHP can generate redirects regardless of the web server. – Josh Lee Mar 30 '10 at 20:51
1  
True, but PHP runs ON the server. I am talking about client-server, not which software runs on the server. – drozzy Mar 30 '10 at 20:52

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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