<!DOCTYPE html>
<html>
<head>
<title>Wyrażenia regularne walidacja kodu pocztowego</title>
</head>
<body>
<form action="dwa pesel elegancko.php" method="post">
<input type="text" name="pole">
<input type="submit" value="wyslij">
</form>
<?php
if (preg_match('@^[0-9]{2}-[0-9]{3}$@', $_POST['pole'])) {
echo ('ok');
} else {
echo ('error');
}
?>
</body>
</html>