Hello:
I have a form with the following form element. A person completing this form is able to choose more than one option. When I print a confirmation page or send a confirmation email, my script only prints the first value that was chosen.
What do I need to do so if a person picks three, the script displays all three?
<input type=checkbox name=whichday value="Monday">Monday
<input type=checkbox name=whichday value="Tuesday"> Tuesday
<input type=checkbox name=whichday value="Wednesday">Wednesday
<input type=checkbox name=whichday value="Thursday">Thursday
If anyone can point me in the right direction it'll be greatly appreciated.
Thank you.