Tuesday, May 27, 2008

php-Page redirect

php-Page redirect

Description

If you want a PHP redirect script that redirects visitors from a page to a specific URL then this is it. It sends the user from one web page to a different web page address. It is a good alternative to using the meta tag http-equiv option.

The code





/**

* Place in a blank PHP page

*/



// Change to the URL you want to redirect to

$URL="http://www.example.com";



header ("Location: $URL");



?>

No comments: