Skip to content
Advertisement

Get the Selected value from the Drop down box in PHP

I am populating a Drop Down Box using the following code.

JavaScript

Now how can I get the selected option value using PHP (I have the code to get the selected item using Javascript and jQuery) because I want the selected value to perform a query in database.

Any help will be much appreciated. Thank you very much…

Advertisement

Answer

You need to set a name on the <select> tag like so:

JavaScript

You can get it in php with this:

JavaScript
User contributions licensed under: CC BY-SA
9 People found this is helpful
Advertisement