-
Redirecting to a different URL using PHP
Date: Feb 26, 2009 | Categories: Php | Written By: madebymat
To redirect from a PHP page to a different URL, use the following code:
<?php
header("Location: http://www.insert-url.com");
?>
To redirect from a PHP page to a different URL, use the following code:
<?php
header("Location: http://www.insert-url.com");
?>