I have the HTML code below for a dropdown menu 'select', and under it is the PHP which is meant to send the selected option. I couldn't find why is it not sending it.
<p class="input-block">
<label for="contact-enquirytype">
<strong>Drop Menu</strong>
</label>
<select for="contact-enquirytype">
<option type="select" value="Option 1" name="enquirytype" id="contact-enquirytype-1">
Option 1
</option>
<option type="select" value="Option 2" name="enquirytype" id="contact-enquirytype-2">
Option 2
</option>
<option type="select" value="Option 3" name="enquirytype" id="contact-enquirytype-3">
Option 3
</option>
</select>
</p>
And the PHP:
$select_enquirytype = strip_tags($_POST['enquirytype']);
I have other input text and radio which are being sent fine, only the dropdown is not being sent.
Thanks.