Fehlte ne Klammer:
<?php
if(date("l", time()) == "Friday") {
echo $inhalt1
} else {
echo $inhalt2
}
?>
Hi,
ist recht simpel:
<?php
if(date("l", time() == "Friday") {
echo $inhalt1
} else {
echo $inhalt2
}
?>
>
> Gruß