Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How can i populate the values in the drop down(second drop down) from the select query on choosing the option from the first drop down ?

Examples: First Drop Down : Listing out all the "department name" using select query. Second Drop Down : Now, i need the output to list out all the "professors name" in the respective departments on the basis of the first drop down option.

Thanks in advance. Much Appreciated your help.

share|improve this question

migrated from webmasters.stackexchange.com Sep 24 '12 at 14:24

1 Answer

You could easily accomplish this with JavaScript: http://javascript.about.com/library/bl3drop.htm

This essentially uses if-then statements to output the latter dropdown lists with options dependent on the first. If you're looking more for PHP and Ajax (for dynamic lists from a database), this is a similar question: [link]

share|improve this answer
Hi, In javascript, two drop down values should come from the database select query. One drop down values should be depends on the other drop down values. I don't want to hard code any values in the drop down, it's should come from the database. Thanks. Give me some sample coding. – jacksantho Sep 24 '12 at 3:45
@jacksantho - You'll want to simply do PHP foreach loops. And echo/print the JS from that. – ionFish Sep 24 '12 at 3:47
Hi, can you give some sample coding please. – jacksantho Sep 24 '12 at 4:11
@jacksantho - Tomorrow when it's not early in the morning and I have some time, I'll try to make you an outline or example of what you should do. – ionFish Sep 24 '12 at 4:31

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.