I have these four tables (which are hierarchical, meanwhile) in my database:

Table 1: State

+----------+-------------+
| state_id | state_name  |
+----------+-------------+
|        1 | Maharashtra |
|        2 | Goa         |
+----------+-------------+

Table 2: District

+-------------+---------------+----------+
| district_id | district_name | state_id |
+-------------+---------------+----------+
|           1 | Mumbai        |        1 |
|           2 | Pune          |        1 |
|           3 | Nashik        |        1 |
|           4 | Aurangabad    |        1 |
|           5 | Panjim        |        2 |
|           6 | Dandeli       |        2 |
|           7 | Karwar        |        2 |
+-------------+---------------+----------+

Table 3: Taluka

+-----------+-------------+-------------+
| taluka_id | taluka_name | district_id |
+-----------+-------------+-------------+
|         1 | Alibag      |           1 |
|         2 | Kalyan      |           1 |
|         3 | Matheran    |           1 |
|         4 | Vaijapur    |           4 |
|         5 | Gangapur    |           4 |
|         6 | Kannad      |           4 |
|         7 | Sillod      |           4 |
|         8 | Madgaon     |           5 |
|         9 | Vengurle    |           5 |
|        10 | Sawantwadi  |           5 |
+-----------+-------------+-------------+

Table 4: Village

+------------+--------------+-----------+
| village_id | village_name | taluka_id |
+------------+--------------+-----------+
|          1 | Ranjangaon   |         5 |
|          2 | Wadgaon      |         5 |
|          3 | Teesgaon     |         5 |
+------------+--------------+-----------+

How could I show select boxes dynamically loaded while happening of following events:

  • Display select box for state names from "State" table
    • Here, state_id as value of <option> tag and state_name as text between opening and closing <option> tags)
  • On selecting any of the state from first select box for states, display a newly created select box for district names from "District" table relative to selected state option from first select box
    • Here, district_id as value of <option> tag and district_name as text between opening and closing <option> tags
  • Similary create a new select box for Talukas under selected District from second select box.
  • Once again, similary create a new select box for Villages under selected Taluka from third select box.

In the above manner, when going through selecting one by one values from newly created select boxes (which we may call children of parent/root select boxes), we finally would have four select boxes for viz. State, District, Taluka, Village.

The aim behind this process is that I need to get the village_id of specific Village along with other data like it's state_id, district_id, and taluka_id.

Please provide an easy to use and flexible solution strictly using jQuery + AJAX, MySQL, PHP.

FYI, I have succeeded to populate select boxes for States and Districts using jQuery's ajax method to POST value of changed select box asynchronously to a query containing PHP script. Well, this worked until I get second select box for Districts. This select box for Districts is created by DOM manipulation rather by server using jQuery, so I couldn't check for change event on Districts' select box so as to POST it's selected value via AJAX to a MySQL query containing PHP script which queries Database for specific District and returns relative Talukas. Can it be handled using bind, delegate or live event handlers, huh--I don't know!!! :P


Well, my logic must be totally wrong. Just forget it, and please give me a complete solution. I will learn many things from that solution. Thank you for reading this all disgust, by the way! ;)


I have created a prototype design for this. This should help to describe the question in visual way (or exactly what I wanted as output or solution to be):

"Prototype design for describing question"


link|improve this question
1  
NEVER trust the client-side to build up SQL strings unless you like your DB to be hacked via SQL Injection. – Diodeus Feb 1 at 18:58
Yes, I agree too. Although it is controlled by parsing the passed $_GET or $_POST values from client-side application in server-side PHP script by the use of PHP functions like trim(), mysql_real_escape_string() and others of similar kind. But it doesn't prevent SQL injections at all. – Vishal Feb 2 at 8:21
feedback

1 Answer

up vote 0 down vote accepted
  1. Show a dropdown using State table. state_id will be option value and state_name will be text.
  2. When onchange event fires on this dropdown get the value of selected option.
  3. Send an Ajax call to load district for selected state. The parameter will be state_id
  4. In the PHP end get all the rows from District that with matching state_id. Return it as JSON response
  5. When Ajax get the response, create a new dropdown or populate previously created one with this new result.
  6. Go to Step 1 for District then Taluka then Village
link|improve this answer
Hey, thanks! The whole process really sounds easy, but I stuck at the first step! ;) Here is my PHP code for retrieving Districts for requested state_id (inside select_district.php): link Here is the output of select_district.php if state_id equals to 1 (I got this by temporary altering $_POST['state_id'] to $_GET['state_id'] and passing value of state_id via url.): link And here is my jQuery code to populate second select box for Districts: link --- This not worked! – Vishal Feb 2 at 8:13
FYI, added link to prototype design to question above which would help to know what I type of solution I need. – Vishal Feb 2 at 9:13
Fixed the previous mentioned problem. Now I has got a select box populated by Districts when selecting an option from States' select box. Here (link) is the code for that. Now I'm trying to repeat this process for populating Talukas when selecting an option from Districts' select box. Here (link) is the code I'm playing with. -- It doesn't working as per expectations. When I looked in source of page, there was no options in Districts' select box, although those were displayed on page. Might be this is the real problem! – Vishal Feb 2 at 10:11
Hmm, options for Districts' select box are inspected in Firebug. But I didn't get the next options for Talukas by selecting any of the options from Districts' select box. Have you seen the code blocks I provided earlier in my reply? – Vishal Feb 2 at 11:01
Got everything working by now. Thank you for your consistent help. – Vishal Feb 2 at 15:49
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.