Is there a function in PHP that can redirect to another page (like http-equiv = refresh in HTML or the redirect function in Perl) ?
Try putting this at the top of your PHP page that you want to redirect:
<?php header("Location: http://www.mysite.com/mypage.html"); ?>
Hope that helps.