This is what my code looks like in my web form:
<td>Access to which modules ?:</td>
<td><INPUT TYPE="CHECKBOX" NAME="Module" VALUE="G/L">G/L
<INPUT TYPE="CHECKBOX" NAME="Module" VALUE="A/P">A/P
<INPUT TYPE="CHECKBOX" NAME="Module" VALUE="A/R">A/R
<INPUT TYPE="CHECKBOX" NAME="Module" VALUE="F/A">F/A
<INPUT TYPE="CHECKBOX" NAME="Module" VALUE="INV">INV
<INPUT TYPE="CHECKBOX" NAME="Module" VALUE="P/O">P/O
<INPUT TYPE="CHECKBOX" NAME="Module" VALUE="SAL P/R">SAL P/R
<INPUT TYPE="CHECKBOX" NAME="Module" VALUE="HRL P/R">HRL P/R
This is my code that is called to deal with the checkboxes:
foreach ($Module as $Mods) {
$Modtext.= " " . $Mods . "/n ";
}
Then I am trying to send the data via email like this:
Access to Which Modules:$Modtext
When I receive the email I get this
Access to Which Modules:
The checkboxes that I have checked are not stored in this code so I don't receive any info, can anyone point me in the right direction. Thanks