Ben bu konuda biraz sorun var.
I have one database with the following tables: Countries -> All countries of the world are added Cities -> The cities are also added user_profile -> The profile of the user with the fields "country" & "city".
Her şey kutularının bile doldurmamak çalışıyor, çalışıyor. Ama ülke ve hem de kullanıcı SEÇİLEN değerini almak nasıl bilmiyorum şehir.
Ben aşağıdaki kodu vardır:
Select Country: <br />
<select id="countries">
<option value="">--</option>
<?php
$sql = "SELECT country, title FROM countries ORDER BY title ASC";
$rs = mysql_query($sql);
while($row = mysql_fetch_array($rs))
{
echo "<option value=\"".$row['country']."\">".$row['title']."\n ";
}
?>
</select>
Select City: <br />
<select id="cities">
<option value="">Select one</option>
<?php
$sql = "SELECT country, title FROM cities ".
"ORDER BY title ASC";
$rs = mysql_query($sql);
while($row = mysql_fetch_array($rs))
{
echo "<option class=\"".$row['country']."\" value=\"".$row['title']."\">".$row['title']."\n ";
}
?>
</select>
Şimdi tablo user_profile ülke içinde kontrol etmek gerekir & şehir o seçti ve ona göstereceğim.
Ben de birlikte çalışıyoruz seçme kutularını hem de yapmak için (jquery eklentisi) jchained kullanın.
Bunu nasıl başarabiliriz? Ben başka bir şey göndermek gerekiyorsa, lütfen bana bildirin.
Şimdiden teşekkürler.