I am pretty new to PHP, but is there a way to change an image that is displayed on the screen based on the time of day. So when it becomes a certain time, the picture changes? I think its possible, but I just don't know where to start. Thanks
The [man]date[/man] function is what your looking for
if((date('H') >= 15) && (date('i') >= 00) && (date('s') >= 00)){ $swap_pic = 'mypic.jpg'; }