×

Please Login or Register to continue.

3
(1K Views)

How can the timer be coded to reset automatically after 30 seconds and repeat the countdown?
(210 Points)
in PHP

Share

1 Answer
(9.4K Points)
1

I commented and suggested using a meta refresh to reset the countdown timer automatically. When countdown timer time ended then meta refresh reshes the whole page and the countdown timer starts from 30 seconds. This process will continue again and again and never stop. It's a method to reset the countdown clock timer using Meta refresh and also you can set any value using PHP programming. 

<!DOCTYPE html>
<html>
<head>
<title> Refresh countdown timer automatically</title>
</head>
<body>
<?php 
$phpvar="30"; 
?> 
<script>
function countDown(secs,elem) {
var element = document.getElementById(elem);
element.innerHTML = "Timer: "+secs+" seconds";
if(secs < 1) {
clearTimeout(timer);
element.innerHTML += '<meta http-equiv="refresh" content="0; url= ">';
}
secs--;
var timer = setTimeout('countDown('+secs+',"'+elem+'")',1000);
}
</script>
<div id="status"style="font-size:30px;"></div>

<script> countDown(<?php echo $phpvar; ?>,"status");</script>

</body>
</html>

 


Comment

Related Questions :-

Featured Items:-


Certificate system in PHP website | PHP scripts

$22



Home Credito loan finance management multipurpose system in PHP

$65



Result management system with Marksheet in PHP website | PHP Scripts

$39




Your Answer

You can post your answer after login..