letzte 5 forumbeiträge....einfache darstellung

Begonnen von sabine01, 03 Juni 2007, 17:32:29

⏪ vorheriges - nächstes ⏩

0 Mitglieder und 1 Gast betrachten dieses Thema.

sabine01

Hallo möchte lediglich die letzten 5 forumbiträge vom  mxboard in einem centerblock darstellen.aber das beigefügte eboad board ist mir zu bunt und platzaufwendig.
Habe hier schon was gefunden aber funkt net.Kann mir jemand helfen ?Danke
$a = 1;
$result = sql_query("SELECT topic_id, topic_title, forum_id FROM $prefix". _TEXTTOPICS ." ORDER BY topic_time DESC LIMIT 10", $dbi);
$content .= "<table width=\"100%\" border=\"0\"><tr><td><br>$textforum</a><br>";
while(list($topicspop, $topic_title, $forum_id) = sql_fetch_row($result, $dbi)) {
$linkstrip1 = stripslashes($topic_title);
$linkstrip2 = substr($linkstrip1, 0, $strip) . "...";
$res = sql_query("select image from $prefix"._posts." where post_id='$topic_id'", $dbi);
list ($image) = sql_fetch_row($res, $dbi);
$content .= "<strong><big>&middot;</big></strong>&nbsp;$a: <a href=\"modules.php?mop=modload&name=Forum&amp;file=viewtopic&amp;topic=$topic_id&amp;forum=$forum_id\">$linkstrip2</a><br>";
$a++;
}
$content .="</td>";