I know there's a coding forum but theres such low traffic in there, I'd also rather post on WF than freelancer cause if I can help someone out in my famiry then I will 
Basically I need a PHP script (or whatever language I think php would be easiest).
It's going to be a countdown timer that updates in real time (no page refreshes). it must take time from the server, not the persons computer time.
There are lots of these already online, but the main change that I need, which I don't know how to do is it needs to repeat every week. So it has to output to a file or something, then add 7 days and countdown again.
So basically The input needs to be a day of the week and time, and then it needs to countdown over the course of the week. when it hits 0 it displays "now performing event!" or something for an hour. After that hour is up, it then counts down from 6 days 23 hours 59 mins 59 seconds and repeats.
it also needs to account for daylight savings time, which shouldnt be a problem considering the time of the server updates to daylight savings time, but its something to be aware of if it writes to a file, then daylight savings time happens, and then it checks the file without checking the server again, it would be an hour off
Just PM me if youre interested, id prolly pay 10-20 bux considering its already all written up in other scripts, i just need that one minor change.
2 current timers that I have tested that update from server time you could modify:
1. JavaScript Countdown/Count-up Timer/Clock/Ticker for Web Pages
To change #1 above to server time rather than persons clock, change this line:
2. Dynamic Drive DHTML Scripts- Universal Countdown Script

Basically I need a PHP script (or whatever language I think php would be easiest).
It's going to be a countdown timer that updates in real time (no page refreshes). it must take time from the server, not the persons computer time.
There are lots of these already online, but the main change that I need, which I don't know how to do is it needs to repeat every week. So it has to output to a file or something, then add 7 days and countdown again.
So basically The input needs to be a day of the week and time, and then it needs to countdown over the course of the week. when it hits 0 it displays "now performing event!" or something for an hour. After that hour is up, it then counts down from 6 days 23 hours 59 mins 59 seconds and repeats.
it also needs to account for daylight savings time, which shouldnt be a problem considering the time of the server updates to daylight savings time, but its something to be aware of if it writes to a file, then daylight savings time happens, and then it checks the file without checking the server again, it would be an hour off
Just PM me if youre interested, id prolly pay 10-20 bux considering its already all written up in other scripts, i just need that one minor change.
2 current timers that I have tested that update from server time you could modify:
1. JavaScript Countdown/Count-up Timer/Clock/Ticker for Web Pages
To change #1 above to server time rather than persons clock, change this line:
Code:
var dnow = new Date("<?= strftime('%c') ?>");
2. Dynamic Drive DHTML Scripts- Universal Countdown Script