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.
Ce qui précède est le contenu détaillé de. pour plus d'informations, suivez d'autres articles connexes sur le site Web de PHP en chinois!