Hi TG,
okay, you've got your form with a number of checkboxes, did I get this right?
Each of them has a name and a value.
I'd use the id's as values:
<input type="checkbox" name="idlist[]" value="234">
<input type="checkbox" name="idlist[]" value="235">
and so on
With the square brackets in the name, you will get all selected values as an array.
After the form is submitted, you can use this array to create a comma-separated list of id's:
$idlist=explode(', ', $HTTP_POST_VARS['idlist']);
The query would be something like:
mysql_query("UPDATE table_name SET status='something' WHERE id IN ($idlist)");
What to replace that "something" with depends on what kind of data the status column takes, e.g. if the status was numeric and 0 before and you want to make it 1, insert 1 there (in that case no singlequotes needed).
Hope I didn't contribute to any confusion...