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
sgd/ysqld/ysql09d/reg5test.php
T

8 lines
164 B
PHP

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