aktuelle.kurse/old_m133/Modul_Unterlagen_133_VOR/08-Uebungen/03 PHP Grundlagen/Datum/PruefeDatum.php
Müller Harald 507e5da390 muh
2022-05-13 11:53:50 +02:00

11 lines
203 B
PHP

//Prüfung der Eingabe ob Datum korrekt ist.
$date = "28.02.2009";
if (!preg_match("/^[0123]?\d\.[01]?\d\.\d{4}$/", $date)
{
echo "Datum ist nicht korrekt.";
}
else
{
echo "Datum ist korrekt.";
};