<html>
<body>
<body bgcolor="#D8D8D8">
<body topmargin=0
leftmargin=0 </body>
<p align="center">
<span class="style3">
<marquee scrollamount="1" scrolldelay="1" direction="up" onmouseover="this.stop()" onmouseout="this.start()" height="126" width="88" bgcolor="#D8D8D8">
<?
include ("configr.php");
$linkm=mysql_connect($yserver,$yuser,$ypassw);
if (!$linkm) die ("couldnt connect to mysql!");
mysql_select_db($ydb,$linkm) or die ("couldnt open SQL!");
$result=mysql_query("SELECT *FROM marquee ORDER BY id DESC");
print "<table border=0>";
$x=1;
while ($a_row=mysql_fetch_array($result) and $x<=8){
$x++;
$img=$a_row['img'];
$alt=$a_row['alt'];
$link=$a_row['link'];
print "<p align=center style=\"margin-top: 13; margin-bottom: 13\"><a href=\"$link\"><img border=\"0\" src=\"$img\" width=\"88\" height=\"31\" alt=\"$alt\"></a></p>";
}
mysql_close($linkm);
?>
</marquee>
</span>
</p>
</body>
</html>