Ver Mensaje Individual
  #10 (permalink)  
Antiguo 26/05/2014, 13:36
portal47
 
Fecha de Ingreso: abril-2014
Mensajes: 141
Antigüedad: 10 años
Puntos: 1
Respuesta: selección combo box

no me di cuenta, asi estaria bien?, porque tambien aparece el ultimo
Código PHP:
Ver original
  1. <?php
  2. while($row = mysql_fetch_array($result)) {
  3.  
  4. $valor = $row["id_titulo"] ;
  5. $nom = $row["titulo"];
  6. $sel = ($valor == $row["id_titulo"]) ? ' selected="selected"' : '';
  7. echo "<option ".$sel." value=".$valor." >".$nom."</option>";
  8. }
  9. ?>