Mysql
 sql >> Database >  >> RDS >> Mysql

Recupero dei dati dal database MySQL all'elenco a discesa html

Per fare ciò, vuoi scorrere ogni riga dei risultati della tua query e utilizzare queste informazioni per ciascuna delle opzioni del tuo menu a discesa. Dovresti essere in grado di modificare il codice qui sotto abbastanza facilmente per soddisfare le tue esigenze.

// Assume $db is a PDO object
$query = $db->query("YOUR QUERY HERE"); // Run your query

echo '<select name="DROP DOWN NAME">'; // Open your drop down box

// Loop through the query results, outputing the options one by one
while ($row = $query->fetch(PDO::FETCH_ASSOC)) {
   echo '<option value="'.$row['something'].'">'.$row['something'].'</option>';
}

echo '</select>';// Close your drop down box