Ver Mensaje Individual
  #7 (permalink)  
Antiguo 29/01/2004, 09:55
rogel
 
Fecha de Ingreso: noviembre-2003
Mensajes: 157
Antigüedad: 20 años, 5 meses
Puntos: 0
este fue el código que hice

Código PHP:
<td valign="top" background="../mor3.jpg"> 
            <p align="center"> 
                    <marquee direction="up" width="280" height="140" scrollAmount='4' onmouseover="this.stop()" onmouseout="this.start()">
                    <font color="#CCCCCC" size="-1"> 
                    <!--Start news//-->
             <?php
            
require('../rogel/connect.php');
            
$string="select * from noticias order by fecha desc";
            
$resp=mysql_query($string,$link);
            while(
$rows=mysql_fetch_array($resp)){
            
$id=$rows[0];
            echo
"<font size='-2' face='Arial, Helvetica, sans-serif'><a href='../noticias/leer_noticia.php?id=$id'>$rows[1]</a></font><br><br>";
            }
            
?>
                    </font></marquee>
                    <!--end of news//-->
                  </p></td>
obviamente lo puedes adaptar al paginator, fijate que esta dentro de una maquee en donde las noticias van apareciendo desde abajo hacia arriba es un buen efecto.

saludos