PHP Page Redirection
This article explains how to redirect to another page using PHP. You can use header function in the beginning of PHP script to inform browser about page redirection. Basically this writes Hyper Text Transfer Protocol(HTTP) header with the field Location. You should not write any text before writing HTTP header. However you can have some text after writing header and it will appear in the browser while browser attempts to access the new page. Generally you won’t notice the message unless your internet connection is slow and browser is taking more time to retrieve new file.
<?php
header('Location: http://mysite.com/newpage.html');
?>

