Sağdan sola doğru kayan Son Konular:
$montrey = $db->query_read("SELECT t.threadid, t.title, t.lastpost, t.postusername, t.postuserid, t.replycount, t.views, t.dateline AS threaddate, t.visible, p.postid, p.userid, p.username, p.dateline AS postdate, p.visible
FROM " . TABLE_PREFIX . "thread AS t
LEFT JOIN " . TABLE_PREFIX . "post AS p ON (t.lastpost = p.dateline)
WHERE p.visible = '1' AND t.visible = '1'
ORDER BY threaddate DESC LIMIT 0, 5");
while($yaz = $db->fetch_array($montrey))
{
$randoms.="<marquee align=\"left\"><a href=\"showthread.php?t=$yaz[threadid]\" title=\"$yaz[title]\">$yaz[title]</a></marquee>";
}