kann mir jemand sagen wie ich das hinbekomme das er immer verschiedene Daten ausliest? also mal die 1 bis 3 zeile und dann mal wieder die 4-6 usw?
PHP-Code:
$sql="SELECT * FROM 2n_downloads_ebooks";
$holen=mysql_query($sql);
$num=mysql_num_rows($holen);
echo"
<A name=scrollingCode></A>
<marquee onmouseover=this.stop() onmouseout=this.start() scrollAmount=2 scrollDelay=90 direction=up height=100 align=\"center\">
<table width=\"85%\" class=\"tb\">
<tr>
<td height=\"20\"></td>
</tr>
<div align=\"center\">
";
for ($i=0; $i < $num; $i++)
{
$ausgabe=mysql_fetch_array($holen);
echo"
<a href=\"download_ebooks.php?id=$ausgabe[id]\">$ausgabe[down_name]</a><p>
";
}
echo"
</div>
</table>
</marquee>
";
Kommentar