HTML-Formular mit PHP
PHP mit HTML
<form method="POST">
<label for="zahl">Zahl / Nummer</label>
<input type="number" id="zahl" name="zahl" required>
<label for="string">String</label>
<input type="text" id="string" name="string" required>
<label for="optionen">Optionen</label>
<select id="optionen" name="optionen" required>
<option value="option1">đ Pizza</option>
<option value="option2">đ Spaghetti</option>
<option value="option3">đ HĂ€hnchen</option>
<option value="option4">đ€ Scampi</option>
</select>
<button type="submit">Absenden</button>
<button type="reset">ZurĂŒcksetzen</button>
</form>
<?php if (isset($_POST['zahl'], $_POST['string'], $_POST['optionen'])): ?>
<?php
$zahl = (int)$_POST['zahl'];
$string = htmlspecialchars ($_POST['string']);
$optionen = htmlspecialchars($POST['optionen']);
?>
<?php endif; ?>