nordi
Erfahrenes Mitglied
Ich raff grad ziemlich wenig Hab fast schon alles ausprobiert - entweder es wird "Pipe Dreams" ausgegeben oder garnichts...
PHP:
<?php
$datum = getdate();
$stund = $datum[hours];
if($stund > 14 && $stund < 20)
{ echo "<strong class=\"header_program\">"Strawberry fields"</strong>"; }
else
{
if($stund > 20 && $stund < 23)
{ echo "<strong class=\"header_program\">"Pipe Dreams"</strong>"; }
else
{
if($stund >= 23 && $stund < 4)
{ echo "<strong class=\"header_program\">"Night on Earth"</strong>"; }
else
{
if($stund > 4 && $stund < 5)
{ echo "<strong class=\"header_program\">"This is hardcore"</strong>"; }
else
{
if($stund > 5 && $stund < 14)
{ echo "<strong class=\"header_program\">"a dry cool place"</strong>"; }
}
}
}
}
?>