Ver Mensaje Individual
  #2 (permalink)  
Antiguo 20/08/2004, 04:56
Avatar de cometron
cometron
 
Fecha de Ingreso: mayo-2003
Ubicación: Madrid
Mensajes: 151
Antigüedad: 20 años, 10 meses
Puntos: 0
Código PHP:
<form action="admin_usuarios2.php" method="post">
<?
$y
=1;
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++;
  }
?>
<input type="submit" value="Eliminar" name="elim">
Prueba asi a ver si te funciona