Ich möchte auf die Startseite eine kleine Box machen in der die 5 aktuellsten Themen sin gibt es da ein code oder wie ist das.
Also die Box sollte dan auf dieser seite sein http://hsg-7d.de.vu und das forum ist hier http://hsg-7d.de.vu/forum
zb. so wie bei http://giga.de
ein teil hab ich schon nur der rest will nicht so.
Code: Alles auswählen
$sql = "SELECT
7dusers.username,
topics.topic_id,
7dtopics.topic_title ,
7dtopics.topic_time,
7dtopics.topic_repli es,
7dtopics.topic_poste r,
7dtopics.forum_id
FROM
7dusers,
7dtopics
WHERE
7dusers.user_id = 7dtopics.topic_poste r
ORDER BY
7dtopics.topic_time
DESC LIMIT 5;";
$abfrage = mysql_query($sql);
while($row = mysql_fetch_array($abfrag e)) {
$username = $row["username"];
$id = $row["topic_id"];
$title = wordwrap($row["topic_title"], 25 , "\n",1);
$time = date("d.m.y", $row["topic_time"]);
$replies= $row["topic_replies"];
$userid = $row["topic_poster"];
$rights = $row["auth_view"];