Ver Mensaje Individual
  #3 (permalink)  
Antiguo 18/07/2012, 13:25
Avatar de Nopal_Studio
Nopal_Studio
 
Fecha de Ingreso: julio-2012
Ubicación: DF
Mensajes: 42
Antigüedad: 12 años, 6 meses
Puntos: 10
Respuesta: problema para insertar registros multiples

Hola, bueno creo que la solucion seria:

Código PHP:
Ver original
  1. $consulta="SELECT * FROM alumnos WHERE grado = '".$a."'";
  2. $resultado=mysql_query($consulta,$conexA);
  3.  
  4. <form action="ingresar.php" method="post">
  5.  
  6. echo '<table border="1">';
  7. echo '<tr>';
  8. echo '<th>'.'nombres'.'</th>';
  9. echo '<th>'.'grado'.'</th>';
  10. echo '<th>'.'Nota'.'</th>';
  11. echo '<tr>';
  12.  
  13. while($fila=mysql_fetch_array($resultado))
  14. {
  15. echo '</tr>';
  16. echo '<th>'.$fila['nombres'].'</th>';
  17. echo '<th>'.$fila['grado'].'</th>';
  18. echo '<input name="id_estu" type="hidden" value="'.$fila['id'].'" />';
  19.  
  20. ?>
  21. <td><input type="text" name="nota" /></td>
  22. <input type="submit" value="aceptar"/>
  23. <?php } ?>
  24. </form>
  25. </table>
  26. <?php } ?>

espero que te haya sido de ayuda, éxito.