Ver Mensaje Individual
  #4 (permalink)  
Antiguo 11/12/2006, 06:30
Avatar de alllebor
alllebor
 
Fecha de Ingreso: septiembre-2006
Mensajes: 295
Antigüedad: 18 años, 3 meses
Puntos: 1
Re: consulta para selecionar los 5 primeros

Autonotel yo lo hago con un printf y me sale bien, no tengo ningun problema

Código PHP:
 <?php 
           
include("conex.php"); 
           
$link=Conectarse(); 
           
$result=mysql_query("SELECT titulo FROM noticias ORDER BY id DESC limit 4",$link); 
        
?>
            <?php       
            
while($row mysql_fetch_array($result)) { 
            
printf("<tr><td background='images/tablaborde.gif' bgcolor='#3399FF'>&nbsp;</td><td width='*' align='left'><b><font face='Wingdings' color='#0000FF'>&Oslash;</font></b><b><a href='noticias.php' text-decoration: none>&nbsp;%s&nbsp;</a></b><hr></td><td background='images/tablaborde.gif'>&nbsp;</td></tr>",$row["titulo"]); 
                        }
                        
                         
mysql_free_result($result); 
                           
mysql_close($link); 
                            
?>