Hi,
ich bekomme folgende Fehlermeldung:
Warning: date() expects parameter 2 to be long, string given in....
if($w['ModificationDate']){
echo '<h5>DER WERT IST VORHANDEN</h5>';
$lastmod = date("D, d.m.Y",$w['ModificationDate']);
}
Das liegt daran, dass $w['ModificationDate'] gar nicht existiert wie mir print_r($w) auch zeigt.
Nur, die If reagiert da anders und gibt den Text '<h5>DER WERT IST VORHANDEN</h5>' aus, was wohl bedeutet es würde doch existieren.
Was mache ich falsch?
Heinz