mmm no me quiere funcionar no me ingresa
$result =mysql_query("select * from tabla order by identificador",$conectar);
while ($row = mysql_fetch_array($result))
{
?>
<input type="checkbox" name="cd[]" value = "<?echo $row["cd"];?>">
<?
}
?>
y apenas elijo los checkbox, lo envio a otro script y esto esta en el insert...paso el array cd[] "supuestamente" y la variable $otra_vble.
for($i=0;$i<count($cd);$i++)
{
$vrble = $cd[$i];
mysql_query("INSERT INTO tabla2 (otra_vble, vrble)
values ( '$otra_vble', '$vble')",$conectar);
}