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

Popolamento dei menu a discesa con voci MySQL

Dovresti guardare Javascript o jQuery per raggiungere il tuo obiettivo. Ho usato jQuery in base alla mia domanda precedente. È anche più semplice e con meno codice.

Il tuo PHP:

Aggiungi un attributo ID event_menu al menu selezionato

echo '<select id="event_menu">';
while ($row = mysqli_fetch_assoc($rEvent)) {
        echo '<option value="'.$row['event_id'].'">'.$row['event_name'].'</option>';
}
echo '</select>';

<div id="container_for_new_menu"></div>

Utilizzo di jQuery:

$('#event_menu').on('change', function() {
    // get selected value and build data string for AJAX
    var event_selected = "event_selected="+$(this).val();

    // send the selected data to a PHP page to build the populated menu
    $.ajax({
        url : 'populate-menu.php',
        type: 'POST',
        data : event_selected,
        dataType : 'html',
        success : function(data) {
            $('#container_for_new_menu').html(data);
        }, error : function() {
            alert("Something went wrong!");
        }
    });
});

Su populate-menu.php , avere qualcosa come:

$event_selected = isset($_POST['event_selected']) ? $_POST['event_selected'] : null;

// do SQL query here based on user's selection
// making sure you validate the data in the POST request for malicious BS
// or use parameterized queries

// then build a new menu to send back
echo '<select>';
    // loop through results and build options
echo '</select>';

Questo nuovo menu verrà quindi ripubblicato nella tua pagina originale nel container_for_new_menu elemento.