Auto page refresh in php
by barkkathulla[ Edit ] 2013-08-03 16:29:37
<?php
$page = $_SERVER['PHP_SELF'];
$second = "5";
?>
<html>
<head>
<meta http-equiv="refresh" content="<?php echo $second?>;URL='<?php echo $page?>'">
</head>
<body>
<?php
echo "Wait...for 5 seconds to refresh a page!";
?>
</body>
</html>