I have select box for company whose values are populated from DB and I also have another select box for department. Now I have a PHP function to get the values of department if we pass the id of company into it. I have to use this function to populate the department select box every i select the company name.

hence, How to pass the selected value from select box to a PHP function?

thanx , every answer is appreciated.

link|improve this question

Where exactly are you stuck, can you share some code please? – David Kuridža Dec 8 '10 at 9:28
what are you trying to do? sounds like you want to change the select box values of department according to any selection made in the company drop down. Am i right? – Shakti Singh Dec 8 '10 at 9:29
@Shakti U r absolutely right... – OM The Eternity Dec 8 '10 at 9:33
Reading some Ajax and Jquery stuff will help you – Shakti Singh Dec 8 '10 at 9:34
AJAX is your friend in this case.. the link posted by Catalin is nice and look pretty simple to implement, assuming you can use jQuery. – Shadow Wizard Dec 8 '10 at 9:35
feedback

2 Answers

You should use a js obviously, would have been helpful if you posted the code but write an

onchange="somefn()"

in the select box and write in the js function an ajax call to populate the second selectbox.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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