z.B. in folgendem Format sein:
1970-09-17 # ISO 8601.
70-9-17 # This century assumed by default.
70-09-17 # Leading zeros are ignored.
9/17/72 # Common U.S. writing.
Ich hab jetzt diesen Code:
$datum = date('m/d/Y');
$datum2 = strtotime("+2 week", $datum);
echo strftime("%d.%m.%Y", $datum2);
Und die Ausgabe: 15.01.1970
Was mache ich falsch?
MFG
Gerd