<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Walidacja pesla ale mało elegancko :]</title>
</head>
<body>
<?php
if (preg_match('@^[0-9][0-9]-[0-9][0-9][0-9]$@', $_POST['pole'])) {
echo 'ok';
} else {
echo 'error';
}
?>
<form action="pierwsze pesel ale chamsko.php" method="post">
<input type="text" name="pole">
<input type="submit">
</form>
</body>
</html>