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/reg7test.php
T

8 lines
167 B
PHP

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