PHP MySQL Drop Down Box Populate Selected Value

后端 未结 1 1464
被撕碎了的回忆
被撕碎了的回忆 2020-12-20 09:19

I have read tutorials about how to populate an entire Drop down list with MySQL, but the problem I am running into is that I only want to grab the one from the database and

相关标签:
1条回答
  • 2020-12-20 09:32

    In your <option> element add the selected attribute for the value that is in itemschoice.

    Crude example using a made up function to get the choice:

    $choice = get_items_choice();
    $results = mysqli_query($sql);
    
    echo '<select name="whatever">';
    while($row = mysqli_fetch_array($results)) {
        if ($row['choice'] === $choice) {
            echo '<option value="' . $choice . '" selected="selected" />';
        } else {
            echo '<option value="' . $choice . '" />';
        }
    }
    echo '</select>';
    

    This is just an example, don't copy & paste this without adding some kind of error verification!

    0 讨论(0)
提交回复
热议问题