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
|
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 |
|||
|
|
|
You can use a link to invoke |
|||||||
|
|
Depends what it is that you're trying to do it with. You could use something like this:
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. ;) |
|||||
|
|
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 No JS, pretty simple, and you can structure it so that it's only handled if the client doesn't have JS enabled. |
|||
|
|
|
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. |
|||