Ver Mensaje Individual
  #7 (permalink)  
Antiguo 18/03/2010, 06:33
Avatar de eulloa
eulloa
 
Fecha de Ingreso: octubre-2007
Ubicación: Donde caiga la noche, si mi hijo me deja
Mensajes: 691
Antigüedad: 16 años, 7 meses
Puntos: 5
Respuesta: Pregunta sobre formulario dinamico con while

Código PHP:
Ver original
  1. <?php
  2. echo "<select name=cosa>";
  3.  while($row = mysql_fetch_array($result))
  4. {
  5. echo '<option value=1>'.$row["tipo_normativa"].'</option>';
  6. //LOS DEMAS CAMPOS
  7. }