Hi,
I need to display 10 digit countdown display on the web page
D H M S mS
21 15 59 55 99
When starting with the least significant digit (Right digit) and going to the left
First two digits: 100th of a second
Second two digits: second
Third two digits: minutes
Fourth two digits: hours
Fifth two digits: days
1. How would I display the running numbers without refreshing the page?
So once you load the page with initial values, the numbers will run all the time.
Is it possible to do with PHP or I must use javascript?
2. Same but different. I have analog clock program that creates png image every second. I would like to replace (update) the analog clock every second, again without refreshing the all web page.
Thanks in advance.
countdown display
Moderator: General Moderators
- Grizzzzzzzzzz
- Forum Contributor
- Posts: 125
- Joined: Wed Sep 02, 2009 8:51 am
Re: countdown display
Javascriptalm2009 wrote: Is it possible to do with PHP or I must use javascript?