Forum Moderators: coopster
The following code demonstrates how you could force the page to redirect after 5 seconds to another page...
<script type="text/javascript">
var url = '/new-page-to-go-to.html';
setTimeout("window.location = '"+url+"';",5000);
</script>
This function sets off an action (changing the page) after 5000 milliseconds (5 seconds). Just put this code anywhere in your page. I'd recommend somewhere near the bottom (my preference). Some might recommend putting this in the "onLoad" event; but I avoid that (it won't get triggered until the page completely finishes loading).
You could, if desired, use PHP to "build out" this code automatically for you.
Some sites might also use the HTML "meta refresh" method. But I'd advise using Javascript (my preference). Just remember to include a standard link on the page (in case Javascript is disabled).
Good luck!