Ver Mensaje Individual
  #5 (permalink)  
Antiguo 21/09/2012, 21:22
Avatar de fjrueda
fjrueda
 
Fecha de Ingreso: marzo-2008
Ubicación: Bucaramanga
Mensajes: 313
Antigüedad: 16 años, 1 mes
Puntos: 35
Respuesta: Pasar un registro de texfield a combobox

Dentro del Select que usted quiere postetear ...

Código PHP:
Ver original
  1. echo '<select name="plato">';
  2. //Generamos el menu desplegable
  3. while ($row=mysql_fetch_array($Recordset1))
  4. {
  5.     echo "<option value='".$row['id_programa']."''>".$row['sigla_programa']."</option>";
  6. }
  7. mysql_free_result($Recordset1)
  8. echo '</select>';

Me cuenta si le sirve .....