Maybe this should be an HTML Q but seeing how its being done with PHP perhaps this is the better group.
Output form snippet:
<form . . . >
.
PSK? <input type="checkbox" name="_netsiteSecPSK" $_netsiteSecPSKY />
AES? <input type="checkbox" name="_netsiteSecAES" $_netsiteSecAESY />
.
</form>
Input processing:
.
$_netsiteSecPSK = $_POST['_netsiteSecPSK'];
$_netsiteSecAES = $_POST['_netsiteSecAES'];
.
and I receive this error notice upon input:
Notice: Undefined index: _netsiteSecPSK in . . .
Notice: Undefined index: _netsiteSecAES in . . .
I've checked and rechecked and rechecked my forms field definitions but I DO NOT receive these two fields back with the form.
I've researched various tech sites and I seem to be coding the form fields correctly so what gives? I know I must be missing something very simple. But I cannot seem to see it (yet).
So, if anyone can shed some light on this, PLEASE DO?
Thanks
Output form snippet:
<form . . . >
.
PSK? <input type="checkbox" name="_netsiteSecPSK" $_netsiteSecPSKY />
AES? <input type="checkbox" name="_netsiteSecAES" $_netsiteSecAESY />
.
</form>
Input processing:
.
$_netsiteSecPSK = $_POST['_netsiteSecPSK'];
$_netsiteSecAES = $_POST['_netsiteSecAES'];
.
and I receive this error notice upon input:
Notice: Undefined index: _netsiteSecPSK in . . .
Notice: Undefined index: _netsiteSecAES in . . .
I've checked and rechecked and rechecked my forms field definitions but I DO NOT receive these two fields back with the form.
I've researched various tech sites and I seem to be coding the form fields correctly so what gives? I know I must be missing something very simple. But I cannot seem to see it (yet).
So, if anyone can shed some light on this, PLEASE DO?
Thanks