On Thu, 10 Nov 2005 14:17:06 +0000 (UTC), "Joe Buck"
<webforumsuser (AT) macromedia (DOT) com> wrote:
Quote:
input name="Location" type="checkbox" id="Shadyside" value="Shadyside" /
input name="Location" type="checkbox" id="Squirrel Hill" value="Squirrel |
Your two checkboxes both have the same name, so only one value will be
passed. You can either name them differently, or you can name them so
PHP will treat them as an array by changing the name to "Location[]".
However, it would require a change to your code that processes the form
to implement the array approach.
Gary