Sie möchten ein dynamisches Dropdown-Feld erstellen, in dem die Optionen im zweiten Dropdown-Feld enthalten sind sind abhängig von der Auswahl im ersten Dropdown-Feld.
Datenbank Struktur:
Table: category | id | master | name | | --- | ------ | ----- | | 1 | 0 | Main 1 | | 2 | 1 | Sub 1 | | 3 | 1 | Sub 2 | | 4 | 0 | Main 2 | | 5 | 4 | Sub 3 | | 6 | 4 | Sub 4 |
PHP-Skript für die Indexseite (tester.php):
<select name="master">
PHP-Skript für die Datenauffüllung (another_php_file .php):
<?php if (isset($_POST['master_id']) && $_POST['master_id'] != '') { $master_id = $_POST['master_id']; $sql = "SELECT * FROM `category` WHERE `master` = ?"; $statement = $objDb->prepare($sql); $statement->execute(array($master_id)); $list = $statement->fetchAll(PDO::FETCH_ASSOC); echo '<option value="" selected disabled>Select Sub</option>'; if (!empty($list)) { foreach ($list as $row) { echo '<option value="' . $row['id'] . '">' . $row['name'] . '</option>'; } } } ?>
Das obige ist der detaillierte Inhalt vonWie erstelle ich ein abhängiges Dropdown-Menü mit PHP und AJAX?. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!