Does PHP have a method to move a browser to another page, or is it just easier to use the HTML version, something like <meta HTTP-EQUIV="REFRESH" content="5; url=http://www.yourdomain.com/index.html">?
Yes, use the header() function
<?php header ("Location: http://www.example.com/"); ?>
Cf : http://fr2.php.net/manual/en/function.header.php