Sau khi xem xét câu hỏi trước của bạn Vấn đề nằm ở mã khối này
for($i=0;$i<$count;$i++)
{
$del_id = $radio[$i];
$sql = "DELETE FROM reigster WHERE id='".mysql_real_escape_string($del_id)."'";
$result = mysql_query($sql);
}
Thay thế ở trên bằng mã này
$count=count($_POST['radio']);
for($i=0;$i<$count;$i++)
{
$del_id = $_POST['radio'][$i];
$sql = "DELETE FROM reigster WHERE id='".mysql_real_escape_string($del_id)."'";
$result = mysql_query($sql);
}