![sonriente](http://static.forosdelweb.com/fdwtheme/images/smilies/smile.png)
Bien, soy algo inexperta, así que puede que mi duda sea una tontería, ruego me perdonéis. Al tema: he hecho una tabla que te enseña unos registros y que en la última columna tiene un checkbox para marcar los registros que quiera eliminar. El código (resumido) es este:
Código PHP:
<form action="admin_usuarios2.php" method="post">
<?
$y=0;
while ($row=mysql_fetch_array($result))
{
echo ('<tr><td>'.$row["id_cli"].'</td>');
echo ('<td>'.$row["nombre"].'</td>');
echo ('<td><input type="hidden" name="$valor[$y]" value="$row["id_cli"]">
<input type="checkbox" name="$vector[$y]"></td><tr>');
$y=($y+1);
}
?>
<input type="submit" value="Eliminar" name="elim">
He hecho muchos experimentos sin resultado alguno, así que agradecería mucho vuestra ayuda.
![sonrisota](http://static.forosdelweb.com/fdwtheme/images/smilies/xD.png)