Hello, so I am getting closer to finally completing my form.
However, I need it so that the US states in my form are able to retrieve the VALUE section of it.
http://bayardclient.com/fastaff/shor...layout_new.php
For example, in my html code, I have each set up as follows:
<input class="validate[minCheckbox[1]] checkbox" type="checkbox" name="[states]" id="Arkansas" value="AR"/> Arkansas
<input class="validate[minCheckbox[1]] checkbox" type="checkbox" name="[states]" id="California" value="CA"/> California
and in the PHP, I have it set up like:
<?php session_start(); {
if(isset($_POST['Submit']))
$states = $_POST['states'];
but it doesn't seem to be working. That is how i have set up the other fields on my form, with the
$name = $_POST['name'];
Can some one please possibly steer me in the right direction?? Would be very appreciative.