<?php
$refreshtime = 5 * 60; //in seconds
?>
<!-- Codes by Quackit.com -->
<html>
<head>
<script type="text/JavaScript">
<!--
/*function timedRefresh(timeoutPeriod) {
setTimeout("location.reload(true);",timeoutPeriod);
}
*/
function delayer(){
window.location = "woodyWebBacker_execute.php"
}
// -->
</script>
</head>
<!--<body onload="JavaScript:timedRefresh(<?php echo($refreshtime * 1000); ?>);">-->
<body onLoad="setTimeout('delayer()', <?php echo($refreshtime * 1000); ?>)">
<p>This page will refresh every <?php echo($refreshtime); ?> seconds.</p>
</body>
</html>
<?php
include "woodyWebBacker.php";
?>