i have a form of check boxes that are in sync with my data base column questions. I out put the checked boxes and it gives me the output Array([0]=>) rather then the question. I feel like i should be using id and question somehow when i grab the data.
echo '<input type="checkbox" name="checkbox[]" value="'.$row["ID"].'">' . $row["Question"]." <br />";
to grab it on next page
print_r($_POST['checkbox']);