everytime i post the data using submit from form.php, the process desent show the $value of the check box but it echos "1" each time in the for each loop any thoughts
here is what i have in my form.php
<input name='checkbox[]' type='checkbox' value=$value>
here is my process.php
<?php
foreach($_POST['checkbox'] as $value)
{
print "$value";
}
?>