Ok, do like this:
$this_very_hour = date('H');
That will return you a number between 0 and 23.
Now, use a switch-case statement like this:
switch($this_very_hour){
case 0:
$img = image;
and so on...
}
For minutes, use date('H-i');
http://www.php.net/date
fLIPIS