Si estas intentando borrar los registros que seleccionaste en los chackbox, es necesario que coloques $llave en el where y no $id
Cita: <?php
include("conext.php");
$link=Conectarse();
if(isset($_GET['id']))
{
$id=$_GET['id'];
mysql_query("delete from actividades where id_tabla = $id",$link);
}
if(isset($_POST['registro']))
{
foreach ($POST['registro'] as $llave)
{
mysql_query("delete from actividades where id_tabla = $llave",$link);
}
}
header("Location: borraractividades.php");
?>