How do I automatically move to another html page?
After a user has entered details I want to move them immediately to a different page.
Thanks everyone!
You gotta use javascript for that.. anyone know enough javascipt to help out?
Andreas
If you mean submitting data to a php script and then redirecting to a different page, use
header("location: new_url")
No Here is an example.The user is filling out a application form.Half way through the form there is a refresh button.If the user clicks on the refresh.I don't want the above info to disappear.Cookies written in javascript do not seem to be working .And asp cookies are not needed here.
Why do you need a refresh button half way through the form? Just have them fill it out and then hit the submit. You can use the header() function in php or javascript to redirect to a new URL.