aktuelle.kurse/m133/4_Modulinhalte_und_Uebungen/13-Login-und-Datenbank/login/tests/reg_glo.php
Harald G. Mueller cdff097ef7 muh
2022-03-17 11:19:26 +01:00

19 lines
591 B
PHP

<?php
if ($_POST) {
echo '<pre>';
// echo htmlspecialchars(print_r($_POST, true));
echo print_r($_POST, true);
echo '</pre>';
}
?>
<form action="" method="post">
Name: <input type="text" name="personal[name]" /><br />
Email: <input type="text" name="personal[email]" /><br />
Bier: <br />
<select multiple name="bier[]">
<option value="warthog">Warthog</option>
<option value="guinness">Guinness</option>
<option value="fosters">Forsters</option>
</select><br />
<input type="submit" name="submit" value="abschicken" />
</form>