<?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