skip to Main Content

Php – Get value from an array and check for individual values

I have 3 dropdowns selects (each drop-down has values from 0 to 25): <select class="form-select" id="select1" name="select1"> <option selected value="0">label...</option> <option value="5">label...</option> <option value="10">label...</option> <option value="15">label...</option> <option value="20">label...</option> <option value="25">label...</option> </select> <select class="form-select" id="select2" name="select2"> <option selected value="0">label...</option> <option value="5">label...</option>…

VIEW QUESTION
Back To Top
Search