if( isset( $_POST['aquafina'] ) && $_POST['aquafina'] != '' )
{
$message .= "AquafinA: ".( $_POST['aquafina'] ). "\n";
}
Noob, questions and clarifications:
This means != (not equal to empty), right?
And
if( isset( $_POST['numSelections'] ) && $_POST['numSelections'] > 0 &&
$_POST['numSelections'] < 40 )
This means less than 40 for numSelections, right?
Just need some clarification, thank you for not flaming.
This is not equal to the empty string, yes. I recommend looking at the type comparison table.
And the second one will mean if numSelections is