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>·</big></strong> $a: <a href=\"modules.php?mop=modload&name=Forum&file=viewtopic&topic=$topic_id&forum=$forum_id\">$linkstrip2</a><br>";
$a++;
}
$content .="</td>";