MrSchmidtdt: Seiteninhalt abhängig vom Wochentag ändern

Beitrag lesen

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ß