ユーザーがデータベースからデータを取得する場所をドロップダウンから選択できるようにする小さなスクリプトを作成しました。私の問題は、情報取得にユーザーが選択するオプションがないことです。ドロップダウンに選択するオプションを表示したいドロップダウンに、You selected 1) Name and 2) Surnameのようなものが表示されます。たとえば、2 つの行も取得したいと考えています。名前と姓..... 表示するにはどうすればよいですか? 彼/彼女が選択した後
これまでのマイコード
////Selectiong from twoo tables
$query = mysql_query("SELECT * FROM selections ORDER BY id ASC") or die(mysql_error());
$result = mysql_num_rows($query);
// If no results have been found or when table is empty
if ($result == 0) {
echo 'No results have been found.';
} else {
// Display form
echo '<form name="form" method="post" action="test.php">';
echo '<select name="id" id="id">';
// Fetch results from database and list in the select box
while ($fetch = mysql_fetch_assoc($query)) {
echo '<option id="'.$fetch['name'].'">'.$fetch['surname'].'</option>';
}
echo '</select>';
echo '</form>';
}