I have a <select> element with 3 options within it and also have 3 PHP functions. How can I set it so that when each option is pressed a different PHP function is called? By my understanding, the select options are client side and the functions are server side. Does this mean that AJAX is necessary? Is there a way to do this without AJAX?
<select name="mySelect">
<option value="filter-oa" disabled="disabled" selected>Filter by Open Access</option>
<option value="full">Fully Open Access</option>
<option value="offers">Offers Open Access</option>
<option value="none">No Open Access</option>
</select>
My 3 functions are: getProOA(), getProFullOA(), and getProNoOA()
Example: User selects the "Fully Open Access" option within the drop-down menu and the getProFullOA() function is called and lists the products on the page.