Well this is odd because what im trying to do i have done many times.
Have a form with checkboxes, whith the name, and a value.
On the next page, would create an string comma seperated, then do:
$csv = implode($del, ",");
mysql_query("DELETE FROM table WHERE ID IN($csv)");
what it should do is return the values of the checkboxes that were checked. I dont know why all of a sudden its doing it like this now.
Derek