hola
podria ser asi:
formulario.php
Código HTML:
Ver original<form action="actualizar_registros.php" name="modificacion" method="post"> <table width="49%" border="1" align="center" rules="rows"> <th width="51%" height="34" align="center" style="font:Verdana, Geneva, sans-serif; font-size:12px">Nombres
</th> <th width="49%" align="center" style="font:Verdana, Geneva, sans-serif; font-size:12px">Departamento
</th> <?php
while($registro = mysql_fetch_array($consulta, MYSQL_ASSOC))
{ ?>
<td height="35" align="center"> <input type="text" value="<?php echo $registro['nombres']?>" name="nombres[]">
<input type="text" value="<?php echo $registro['departamento']?>" name="departamento[]" class="letrapequeña" >
<input type="hidden" value="<?php echo $registro['idempleado']?>" name="idempleado[]">
<?php
}
?>
simplemente listas los usuarios con sus respectivos valores
al enviar el form a
actualizar_registros.php
Código PHP:
Ver originalfor ($i = 0; $i < count($_POST['nombres']); $i++) {
$update = mysql_query ("UPDATE empleado SET nombres='{$_POST['nombres'][$i]}', departamento='{$_POST['departamento'][$i]}'
WHERE idempleado='{$_POST['idempleado'][$i]}'",$conex)
echo $update."<br/>";
}
y Listo.....