Ver Mensaje Individual
  #2 (permalink)  
Antiguo 16/01/2006, 03:07
Avatar de Panino5001
Panino5001
Me alejo de Omelas
 
Fecha de Ingreso: mayo-2004
Ubicación: -34.637167,-58.462984
Mensajes: 5.148
Antigüedad: 20 años, 9 meses
Puntos: 834
Te mando un ejemplo en php para que lo adaptes
Código PHP:
<script type="text/JavaScript">
function destacar(lid){
window.location="administrator_ctrl_newslet9.php?id="+lid;
}
</script>

<select name="select" class="field" onchange="destacar(this.value)">
<?php 
 $qry
=mysql_query("select * from news where identificador='mk' and activo='si' and estado='enviado' order by id desc");
 while(
$row=mysql_fetch_assoc($qry)){
 
?>  <option value="<?php echo $row['id'?><?php if($row['destacado']=='si'){ ?>selected<?php ?>><?php echo $row['tituloing'?></option><?php ?>
                      </select>