PHP で MySQL クエリ結果をドロップダウン ボックスに入力するにはどうすればよいですか?

Patricia Arquette
リリース: 2024-11-15 02:15:02
オリジナル
205 人が閲覧しました

How to Populate Dropdown Boxes with MySQL Query Results in PHP?

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:

  1. Database Connection:
mysql_connect('hostname', 'username', 'password');
mysql_select_db('database-name');
ログイン後にコピー
  1. Query Execution:
$sql = "SELECT PcID FROM PC";
$result = mysql_query($sql);
ログイン後にコピー
  1. Dropdown Box Creation:
echo "<select name='PcID'>";
ログイン後にコピー
  1. Populating Options:

Iterate through the query results to create

while ($row = mysql_fetch_array($result)) {
    echo "<option value='" . $row['PcID'] . "'>" . $row['PcID'] . "</option>";
}
ログイン後にコピー
  1. Dropdown Box Closure:
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 中国語 Web サイトの他の関連記事を参照してください。

ソース:php.cn
このウェブサイトの声明
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。
著者別の最新記事
人気のチュートリアル
詳細>
最新のダウンロード
詳細>
ウェブエフェクト
公式サイト
サイト素材
フロントエンドテンプレート