Ehrlich gesagt weiss ich nicht wie man das nennen soll deshalb hab ich au nichts bei der suche gefunden
... Ich bin momentan soweit...
So nun die grosse Frage wie kriegt man das hin, dass Von 8.00 bis 18.00 Das 1. Bild angezeigt wird und von 18.00 bis 8.00 Bild 2 angezeigt wird... Ich glaub das größte Problem ist dass nach 24.00 halt 1.00 kommt...
... Ich bin momentan soweit...
Code:
<?
$uhrzeit = date("H:i:s",$timestamp);
$today = getdate();
$month = $today['month'];
$mday = $today['mday'];
$year = $today['year'];
$hours = $today['hours'];
$minutes = $today['minutes'];
$now = sprintf ("$mday $month $year %02d:%02d", $hours, $minutes);
if($now == ****)
{
echo "<center><IMG src=\" Link zum Bild 1.JPG"\></center> ";
}
else
{
echo "<center><IMG src=\" Link zum Bild 2.JPG"\></center> ";
}
?>