私にはリストボックスがあり、2つの質問があります。PHP mysqliリストボックス
第1回どうすれば言いたいことができますか?国を選択するには?私の更新ページ上の第二 それが適切な国を表示しますが、それはデフォルトのオプションを持っている、まあ編集ページに
<?php
$sql = "SELECT countries.country_id, countries.country_name, users.user_country FROM countries, users
WHERE users.user_country = countries.country_id";
$result = query($sql);
?>
<select class="form-control input-lg box" id="country" name="country">
<?php
$i = 0;
while (($row = mysqli_fetch_assoc($result)) != false) {
?>
<option value="<?=$row["country_id"];?>"><?=$row["country_name"];?></option>
<?php
$i ++;
}
?>
(1)あなたの '