The PHP header function allows redirection of the browser, among other cool things.

Example redirecting the browser to php-scripts.com homepage:

<?php
header(”Location: http://www.php-scripts.com/”);
?>