Populating Dropdown Boxes with MySQL Query Results in PHP
In PHP, you can easily populate dropdown boxes with data retrieved from a MySQL database. While you may have attempted to do this before, it's essential to understand each line of code to ensure successful implementation.
To achieve this, first ensure that your MySQL credentials are correct, especially if you're using a test environment. Here's an example that demonstrates the process:
mysql_connect('hostname', 'username', 'password'); mysql_select_db('database-name');
$sql = "SELECT PcID FROM PC"; $result = mysql_query($sql);
echo "<select name='PcID'>";
Iterate through the query results to create
while ($row = mysql_fetch_array($result)) { echo "<option value='" . $row['PcID'] . "'>" . $row['PcID'] . "</option>"; }
echo "</select>";
This code will generate a dropdown box with options corresponding to the PcID values retrieved from the MySQL PC table.
以上是如何在 PHP 中使用 MySQL 查詢結果填入下拉方塊?的詳細內容。更多資訊請關注PHP中文網其他相關文章!