Hi Kirk,
No I don't have shell access, unfortunately, and the update is for the current page. I was wanting to display a new pic at various intervals, here's what i came up with so far....
<?php
$set = getdate();
$timerm=$set["minutes"];
$timers=$set["seconds"];
echo "minutes=$timerm"; //check output.
echo "seconds=$timers"; //check output.
print("$timer \n");
sleep(94);
$set = getdate();
$timer2m=$set["minutes"];
$timer2s=$set["seconds"];
if (($timerm+1 == $timer2m) && ($timers+34 == $timer2s)){
print("you da man!! \n"); //event to do here.
}
echo "timer2m=$timer2m, timer2s=$timer2s"; //just a check.
?>
It works in tests as is but am curious to test 'under fire'. Will check back and let you know.
Marcel.