いいえ、
を使用して通常どおりドロップダウンを作成します<select name="myCountry">
<option>Country A</option>
<option>Country B</option>
<option>etc lol</option>
</select>
次に、フォームがPHP処理ファイルを指すようにします。そこで、次のようなことを行います。
$selectedCounty = $_GET['myCountry']; //This assigns the selected value from that country dropdown into a usable variable.
次に、データベースにクエリを実行します。「countries」というデータベーステーブルと、「myCountries」という国がリストされた列があるとします。
$selectCountryQS = SELECT * FROM countries WHERE myCountries = '$selectedCountry';
次に、それを実行に移します
$selectCountryDoIt = mysqli_query('connection variable here', $selectCountryQS ) or die('error mssg'. mysqli_error(conection var here));
次に、必要なすべての投稿データを取得するwhileループを設定します。
while($row = mysqli_fetch_array($selectCountryDoIt)){
echo $row[' your column data to display here'];
}
これにより、必要なものが得られます。これがお役に立てば幸いです。頑張ってください