This repository has been archived on 2026-06-03. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files

9 lines
169 B
PHP

<?php
if (preg_match("/[1234567]/",$_GET['reg'])) {
echo "<h1>Die Eingabe ist korrekt</h1>";
}else{
echo"<h1>Die Eingabe war nicht korrekt</h1>";
}
?>