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; ?>