Forum Moderators: coopster
My library provides the following Assistive Technology devices: <BR>
<INPUT type="checkbox" name="assistivetech[]" value="Reading Magnifier">Reading Magnifier<BR>
<INPUT type="checkbox" name="assistivetech[]" value="Interpretype">Interpretype<BR>
<INPUT type="checkbox" name="assistivetech[]" value="Large Print Internet Monitor">Large Print Internet Monitor<BR>
<INPUT type="checkbox" name="assistivetech[]" value="Video Eye">Video Eye<BR>
<INPUT type="checkbox" name="assistivetech[]" value="Sign Interpreter">Sign Interpreter<BR>
<INPUT type="checkbox" name="assistivetech[]" value="Infra-Red Listening System">Infra-Red Listening System in Meeting Room<BR>
<INPUT type="checkbox" name="assistivetech[]" value="Wheelchair Accessible Meeting Room">Wheelchair Accessible Meeting Room<BR>
<INPUT type="checkbox" name="assistivetech[]" value="Motorized Scooter">Motorized Scooter<BR>
<INPUT type="checkbox" name="assistivetech[]" value="Wheeled Walker">Wheeled Walker<BR>
I've tried several ways to try to get these to show up in the email, but the closest I get is this:
if (!isset($assistivetech)) $assistivetech= array();
foreach ($assistivetech as $value)
{
$assistivetech_req .= "assistivetech: ".$value."\n";
}
Which gives me this in my email reply:
Assistive Technology Devices: Array
I can't get a list of checked items.
Any help would be greatly appreciated. I'm very new at this.