ich habe mir ein kleines Tool geschrieben, welches bestimmte Einträge aus einem phpBB Board holt und diese anzeigt:
Code: Alles auswählen
$result = mysql_query("SELECT phpbb_topics.forum_id, phpbb_topics.topic_id, phpbb_posts.topic_id, phpbb_posts.post_id,
phpbb_posts_text.post_id, phpbb_posts_text.post_subject, phpbb_posts_text.post_text FROM phpbb_topics, phpbb_posts,
phpbb_posts_text WHERE phpbb_topics.forum_id='6' && phpbb_topics.topic_id=phpbb_posts.topic_id &&
phpbb_posts.post_id=phpbb_posts_text.post_id ORDER BY phpbb_posts_text.post_id DESC") OR die(mysql_error());
while($row = mysql_fetch_array($result))
{
$newsabfrage .= '<tr><td class="style2" align="left" height="30"><strong><font style="font-size:14pt;">' .
$row["post_subject"] . '</i></td></strong></font></tr><br><br><tr><td class="style2" colspan="2"><font style="font-size:12pt;">' . $row["post_text"] .
'</font></td></tr><tr><th colspan="2"><hr noshade></th></tr>';
}
mysql_freeresult($result);
mysql_close();
echo $newsabfrage;
echo '</table>';Woran liegt das und wie kann man das beheben?
Gruß
Alex