hi,
another suggestion re how to do it in PHP.
I use this to turn over issues at midnight Thai time - so am counting the days rather than hours, but the principle is the same.
/*get the time*/
$today=date("Y-m-d");
/*deal with the time difference (the servers are in the US, but the users are in Thailand)*/
$offset="11";/*meaning 11 hours ahead of the timezone where the servers live*/
$adjust = ($offset * 60 * 60);/*turn the offset into seconds*/
$today=date("Y-m-d",time()+$adjust);
The above could be condensed if you wanted
so many different ways to do things in PHP - its great!
/s