नहीं, आप हमेशा की तरह अपना ड्रॉपडाउन
. के साथ बनाएंगे<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.
फिर आप डेटाबेस को क्वेरी करते हैं।मान लें कि आपके पास "देश" नामक डेटाबेस तालिका है और "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($row = mysqli_fetch_array($selectCountryDoIt)){
echo $row[' your column data to display here'];
}
यह आपको वह देगा जो आपको चाहिए।उम्मीद है कि यह मदद करेगा। शुभकामनाएँ