I am have three drop down list : Country , State and City.
I want to populate state list based on selection in country list and populate city list based on selection in state list.
Here's how I have attempted this
From the country list, using the onchage event I call java script function.
<select name="country" id="id1" onchange="onCountryChange(this.value)">Then I send a request to server to get names of states associated with country.
function onCountryChange(str){ if (window.XMLHttpRequest){ xmlhttp=new XMLHttpRequest(); } else{ xmlhttp=new ActiveXObject("Microsoft.XMLHTTP"); } xmlhttp.onreadystatechange=function(){ if (xmlhttp.readyState==4 && xmlhttp.status==200){ document.getElementById("statenames").innerHTML=xmlhttp.responseText; } } xmlhttp.open("GET","./view/countrychange.php?countryname="+str,true); xmlhttp.send(); }The I get the values of states using the following code.
<?php $countryname=$_GET["countryname"]; $connection = pg_connect("host=localhost port=5432 dbname=STAGE2 user=postgres password=jssate"); if (!$connection){ echo "<H1>Error in connection to Database</H1>"; echo "<H2>Please try again</H2>."; } else{ $query1="Select distinct(state) from master_table where country='$countryname'"; $result = pg_query($connection,$query1); $numrows = pg_numrows($result); if ($numrows>0){ echo "State <select name="state" id="stateid">; for ($row_index=0;$row_index<$numrows;$row_index++) { $state_name=pg_result($result,$row_index,0); echo "<option value="$state_name\">$state_name</option>"; } echo "</select>"; } } pg_close($connection); ?>
3 .Used the following code on my client side to display the result.
<div id="statenames">
//Original select list placed here is replaced by the one returned by server.
</div>
This does work for me and the states are populated based on country name. Now how do I populate the third list. Is the approach I have chosen for displaying the state list correct? As I have no control on the select list of state which I get now.