I am by no means a PHP expert. I barely scratch the surface, so please forgive my post. However, after much searching, I can't seem to find the answer to my question.
Essentially, I have a contact form with many questions (http://www.tabsfm.com/contact/quote/). Not all questions need answers. so the problem I have is that when the email comes through, all questions are displayed including the ones with no answers.
Is it possible to only post to the email the questions which have received an answer, ignoring any blank responses?
Rather than post the whole contact form, perhaps someone could help provide an example for the following segment:
HTML
Department/Organisation Size:
<select name="Size" class="hear">
<option value="000">Please Select</option>
<option value="1-5">1-5</option>
<option value="5-10">5-10</option>
<option value="10-20">10-20</option>
<option value="20-50">20-50</option>
<option value="50-100">50-100</option>
<option value="100+">100+</option>
</select>
PHP
$size = $_POST['Size']; and
$response = "$todayis [EST] \n
Company Size: $size \n
I hope you guys can help.