Quantcast
Channel: 9zap.com » PHP
Viewing all articles
Browse latest Browse all 15

PHP code to redirect a page

$
0
0

You can set redirection of a page to any other url using a simple php code. In below code I will redirect to www.google.com

<?PHP
header("Location: http://www.google.com");
exit;
?>

If you want to set a timer with a message like “You will be redirected to www.google.com in 5 seconds” use below code.

<?PHP 
header("Refresh: 5; url=http://www.google.com"); 
echo "You will be redirected to www.google.com in 5 seconds."; 

?> 

Viewing all articles
Browse latest Browse all 15

Trending Articles