Ver Mensaje Individual
  #2 (permalink)  
Antiguo 19/12/2007, 13:13
Avatar de GatorV
GatorV
$this->role('moderador');
 
Fecha de Ingreso: mayo-2006
Ubicación: /home/ams/
Mensajes: 38.567
Antigüedad: 18 años, 9 meses
Puntos: 2135
Re: mostrar opcion en blanco

Solo agrega la opcion:
Código PHP:
<select name="cliente" id="cliente">
<option>-Selecciona-</option>
<?php do { ?>
<option>
<?php echo $row_clientes['nombre']; ?>
<?php 
} while ($row_clientes mysql_fetch_assoc($clientes)); ?>
</option>
</select>
Saludos.