Somewhat new to php, I did some searching but didn't find a clear answer. I have a page with automatically generated checkboxes coming from a read CSV file:
while (($data = fgetcsv($handle, 1000, ",")) !== FALSE) {
$row++;
echo '<tr><td>' . $data[0] . '</td><td><input type="checkbox" name="included" value="col' . $row . '" /></td></tr>';
echo "<br>";
}
This form will submit to a page, and I want to get an array of the checked boxes, like "col2" "col4" "col5"
How do I do this?