Ver Mensaje Individual
  #3 (permalink)  
Antiguo 24/11/2009, 15:43
Avatar de dcreate
dcreate
 
Fecha de Ingreso: octubre-2009
Ubicación: Veracruz
Mensajes: 536
Antigüedad: 14 años, 6 meses
Puntos: 22
Respuesta: Lista desplegable

te puede ayudar esto:

Código php:
Ver original
  1. <?php include "conexion.php";
  2. conectar();
  3.       $consulta=mysql_query("SELECT * FROM tabla");
  4.      
  5.       echo "<select name='campo'id='campo' style='text-transform:uppercase;'>";
  6.       echo "<option value='0'>Elige..</option>";
  7.       while($registro=mysql_fetch_row($consulta))
  8.       {
  9.       echo "<option value='".$registro[0]."'>".$registro[0]."</option>";
  10.       }
  11.       echo "</select>";
  12.      
  13.       ?>