![Antiguo](http://static.forosdelweb.com/fdwtheme/images/statusicon/post_old.gif)
23/01/2009, 13:43
|
| | Fecha de Ingreso: junio-2008 Ubicación: Capital Federal xD
Mensajes: 1.208
Antigüedad: 16 años, 7 meses Puntos: 35 | |
Respuesta: Ayuda urgente Sino le erre es:
<?
$sql= " SELECT * FROM alumnos WHERE anio=x";
$res = mysql_query($sql);
$i=0;
while ( $row = mysql_fetch_array($res) ) {?>
<?=$row[campoNombre]?>
<input name="nota<?=$i?>" type="text" > <?
$i++;
}
?>
El nombre del input debe ser diferente para diferenciar las notas por eso le puso un incrementador |