Código PHP:
<script language="JavaScript">
document.write('<marquee id="iescroller" direction="up" width="100%" height="153" scrollamount="2" scrolldelay="100">');
iescroller.onmouseover=new Function("iescroller.scrollAmount=0");
iescroller.onmouseout=new Function("iescroller.scrollAmount=2");
document.write('<font size="3" face="Trebuchet MS" color="Black">')
document.write('<Div align="center">Bienvenidos a mi página</div><br>');
<?php
//Aquí empieza el PHP. Define cuántas noticias quieres mostrar en el scroll. Serán siempre las más recientes.
$cuantas = '5';
// vamos a hacer un bucle para que por cada noticia haga todo este proceso.
include ("conexion.php");
$selec = mysql_query("SELECT * FROM noticias ORDER BY id DESC limit $cuantas");
while ($row = mysql_fetch_array($selec)) {
?>
document.write('<Div align="center"><?=$row['fecha']?> - <?=$row['titulo']?></div><br>');
<? }
//Aquí acaba el bucle ?>
document.write('</font>');
document.write('</marquee>');
</script>
Eso ya lo personalizas un poco....
Impossible is nothing