Thread: PHP redirect?
View Single Post
  #4 (permalink)  
Old 04-27-10, 17:14
ioulios ioulios is offline
BOD Member
 
Join Date: Apr 2010
Location: Greece
Posts: 3
Default

PHP Code:
<?php 
    
//Redirect Message
    
echo "You will be automatically redirected to a new location.<br>\n";
    echo 
"If your browser does not redirect you in 10 seconds, or you do not wish to wait, <a href=\"http://www.domain.tld/new-page.php\">click here</a>.\n";
    
//Redirect to new page 
    
header('Refresh: 10; URL=http://www.domain.tld/new-page.php'); 
?>
or

PHP Code:
<?php 
    
//Redirect Message
    
echo "You will be automatically redirected to a new location.<br>\n";
    echo 
"If your browser does not redirect you in 10 seconds, or you do not wish to wait, <a href=\"http://www.domain.tld/new-page.php\">click here</a>.\n";
    
//Redirect to new page 
    
$start time();
    
$end $start 10;
    while (
time() < $end) {
        
header('Location: http://www.domain.tld/new-page.php');
    }
    exit();
?>
Reply With Quote