
02/06/2006, 00:45
|
 | | | Fecha de Ingreso: marzo-2004 Ubicación: Florida, Uruguay
Mensajes: 2.495
Antigüedad: 21 años Puntos: 78 | |
Bueno cuando generas el form deberias hacerlo en un bucle php algo como
<?php
tus sentencias sql y mysql_query
while ($row = mysql_fetch_array($rst)) {
echo '<input type="text" name="nombre[]">';
}
?>
eso te genera tantos input como registros tengas en la consulta |