PHP-Code:
for ($t = time(), $d=0; $d<5; $t+=86400, $d++)
echo date('d/m', $t), ' - ';
... ohne Schleife ist man natürlich flexibler ...
for ($t = time(), $d=0; $d<5; $t+=86400, $d++)
echo date('d/m', $t), ' - ';
echo date("d.m.Y",strtotime("+1 day"));
echo date("d.m.Y",strtotime("+2 day"));
// usw., oder auch
echo date("d.m.Y",strtotime("+1 week"));
Einen Kommentar schreiben: