PHP - Redirecting to another page

Posted in: PHP
By dePoPo
Mar 2, 2009 - 10:43:45 PM

This code redirects the visitopr to another URL of your choosing.


The code must be executed before anything at all is outputted to the browser, not even empty lines.

<?php
  header("Location: http://www.depoPo.net/");
?>


Visitor Comments