Another way to do this would be to create an array of these checkbox values. Here's an example:
<input type='checkbox' name='checkbox' value='". $Row['ind']. "' />
Then, when you submit the form, you can use this code to do something to all the checkboxes
<?php
if (isset($_POST['checkbox'])) {
foreach($_POST['checkbox'] as $row) {
//do something here
}
}
?>
Personally, I think this is a little cleaner, as you're POSTing fewer variables, since all of the checkboxes are being sent in the checkbox array.