Forum Moderators: coopster
I am getting a peculiar error with checkboxes on my web form. The error that appears is:
Notice: Undefined index in chkOther...
Code for checkbox in the form:
<INPUT type="CheckBox" value="Other" Name="chkOther">
Scripting code for posting:
if ($_POST['chkOther'])
{$msg = $msg."\n".($_POST['chkOther']);}
Any help would be greatly appreciated.