Ver Mensaje Individual
  #4 (permalink)  
Antiguo 15/03/2006, 14:09
Avatar de claudiovega
claudiovega
 
Fecha de Ingreso: octubre-2003
Ubicación: Puerto Montt
Mensajes: 3.667
Antigüedad: 21 años, 4 meses
Puntos: 11
A ver déjalo así:

Código PHP:
<?php
   $categorias 
mysql_query("SELECT * FROM $tbAmbitos " );
   while (
$fila mysql_fetch_array($categorias))
   {
?>
       <option value="<?php echo $fila['idamb']?>"><?php echo $fila['tituloamb']?></option>
<?php
   
}

?>