Wednesday, May 1, 2013

Redirect page after certain time PHP

This is the simple php function to redirect page after certain time.

<?php
/* 
Online PHP Examples with Source Code
website: http://4evertutorials.blogspot.in/
*/

/*
* Redirects to specified $page 
*/ 
function REDIRECT($page, $seconds=4)
{ 

        // redirect specific $page within $seconds seconds
        header("Refresh: " . $seconds . "; URL=" . $page);
        exit(); 

}


?>

No comments:

Post a Comment