okay:
you will never get "off" checkboxes to show up. they're just not supposed to.
two possible solutions:
1) number your checkboxes. I think this is the quickest, most straightforward solution. this way, it's easy to see which item the checkbox belongs to.
HTML Code:
<input type="checkbox" name="todelete[1]">
<input type="checkbox" name="todelete[2]">
<!--etc.-->
2) use radios instead. that way, you'll get a "yes" or "no" value for each item. However, you'll need two buttons for each item, and I <i>think</i> you might need to index them anyway; or your yes/no counts might get confused.
HTML Code:
<input type="radio" name="todelete[1]" value="yes"> Delete
<input type="radio" name="todelete[1]" value="no"> Keep
Bookmarks