I have a mailing list, when submitted it will take the user to a new page where it tells them they have been added/removed or the e-mail is not valid etc. How can i make this page return to the previous page they were on after ten seconds or so. :mad:
Put this between the <head> </head> tags in your document
<META HTTP-EQUIV=Refresh CONTENT="10; URL=http://www.yoursite.com/page.php">
the 10 is 10 seconds. Change that to whatever you want.
Cgraz
I prefer using php whenever possible.
<?php header("refresh: 10; url=http://$SERVER_NAME/page.php"); ?>
Again 10 represents ten seconds. Change/modify to your specs.
Thanks guys you sorted me out. 😃 😃