saludos gentita tengo sgte code:
imagen.php
<?php
include("cn.php");
$noticias=mysql_query("select *from noticias order by cod_not desc", $cn);
while($rows=mysql_fetch_array($noticias)){
echo "<marquee direction='up' scrolldelay='150'>";
echo $rows[titu_not]."<br>";
echo substr($rows[des_not],1,10);
echo "<img src=$rows[img1] width='173' height='105'/>";
echo "<a href='ver_noticia.php?id=$rows[cod_not]'>Mas..</a>";
echo "</marquee>";
}
mysql_free_result($noticias);
?>
en un frame llamo a la pagina imagen.php, pero la animacion no es continua, debe ser una limitación de la marquesina.
si hay alguna otra posivilidad, se agradeceria el comentario. thanks