use <meta refresh>
and set the delay for some seconds
read more about it:
http://en.wikipedia.org/wiki/Meta_refresh
regars .. to you 🙂
halojoy
This will of course work, too, in most cases,
as a redirect in PHP:
<?php
// PHP redirect after 5 sec
// this line is not visable
echo '<meta http-equiv="refresh" content="5;url=http://wikipedia.org"/>';
// info message
echo 'This is eventual additional information Message';
exit(); // make sure to end php script
?>