adamx
Member
Hello,
I've been trying a lot to get this working but I am forced to ask for help here.
So, for the checkboxes, the value is sent ok with:
and the form with:
but the problem appear when trying to send the checkboxes.
with:
Does nothing in the form. The form is sent, the email, fname, radioboxes all ok, but checkboxes remain unchecked.
Any help is much appreciated.
I've been trying a lot to get this working but I am forced to ask for help here.
So, for the checkboxes, the value is sent ok with:
Code:
'ORIENT' => isset($_POST['ORIENT']) ? $_POST['ORIENT'] : null,
Code:
<div class="data">
<label for="ORIENT_0"><input value="ADA" id="ORIENT_0" type="radio" name="ORIENT"><span>ADAM</span></label>
<label for="ORIENT_1"><input value="AFA" id="ORIENT_1" type="radio" name="ORIENT"><span>AFAM</span></label>
<label for="ORIENT_2"><input value="AGA" id="ORIENT_2" type="radio" name="ORIENT"><span>AGAM</span></label>
<label for="ORIENT_3"><input value="AHA" id="ORIENT_3" type="radio" name="ORIENT"><span>AHAM</span></label>
</div>
but the problem appear when trying to send the checkboxes.
Code:
'INTR' => isset($_POST['INTR']) ? $_POST['INTR'] : null,
Code:
<div class="data2">
<label for="INTR_0"><input value="BUH" id="INTR_0" type="checkbox" name="INTR[]"><span>BUHE</span></label>
<label for="INTR_1"><input value="BUN" id="INTR_1" type="checkbox" name="INTR[]"><span>BUNE</span></label>
<label for="INTR_2"><input value="BUM" id="INTR_2" type="checkbox" name="INTR[]"><span>BUME</span></label>
</div>
Does nothing in the form. The form is sent, the email, fname, radioboxes all ok, but checkboxes remain unchecked.
Any help is much appreciated.