First, I am not sure if what I am looking to do is even possible.
I have an idea in my head (and on paper) for an auction site that needs multiple, independent timers.
What I believe to be the trickiest part of what I am looking to do, and the reason I don't think it's possible, at least without JavaScript, is I want the timer to reset itself to 20 seconds when someone bids unless it is currently at a greater time.
Basically, if the timer is at anything greater than 20 seconds and someone bids the timer does nothing, if the timer is at anything less than 20 seconds when someone bids it resets itself to 20 seconds. I have seen examples of sites similar to my idea, but they all use JavaScript for the timers without any "backup" in case the user doesn't have JavaScript enabled.
If it is possible I would like to have it setup where the timers do not rely on JavaScript (or Java), or at the very least have a reliable alternative, so that if a user can't or doesn't want to enable JavaScript they can still participate on the site.
The only reason I am not even sure this is possible is that I can't find any examples of this idea, either paid or free, anywhere on the web.
Also, in case it matters, I plan on coding the site using PHP because I like the way you can dynamically change the site a lot easier than other languages. I am not set on using PHP, however, especially if another coding language would be more "appropriate" for what I am trying to do.