Hej,
Kan nogen her fortælle mig, hvorfor bliver "seneste indlæg" listen ikke vist korrekt i IE8. I kan se php koden som danner denne liste nedste.

<?php
// How Many Topics you want to display?
$topicnumber = 5;
// Scrolling towards up or down?
$scroll = "up";
// Change this to your phpBB path
$urlPath = "http://solormen.dk/phpbb3";
// Database Configuration (Where your phpBB config.php file is located)
include 'config.php';
$table_topics = $table_prefix. "topics";
$table_forums = $table_prefix. "forums";
$table_posts = $table_prefix. "posts";
$table_users = $table_prefix. "users";
$link = mysql_connect("$dbhost", "$dbuser", "$dbpasswd") or die("Could not connect");
mysql_select_db("$dbname") or die("Could not select database");
$query = "SELECT t.topic_id, t.topic_title, t.topic_last_post_id, t.forum_id, p.post_id, p.poster_id, p.post_time, u.user_id, u.username
FROM $table_topics
-cut-;
echo "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n";
echo "<html xmlns=\"http://www.w3.org/1999/xhtml\">\n";
echo "<head>\n";
echo "<meta http-equiv=\"Content-Type\" content=\"text/html; charset=iso-8859-1\" />\n";
echo "<title>Seneste indlæg</title>\n";
print "<b><font face=\"Verdana, Arial, Helvetica, sans-serif\" size=\"2\"><font color=\"black\">Seneste indlæg<hr/></font></b><table>";
while ($row = mysql_fetch_array($result, MYSQL_ASSOC))
{
echo"<li><font face=\"Verdana, Arial, Helvetica, sans-serif\" size=\"2\"><font color=\"#15317E\"><a style=\"color:#15317E; text-decoration: none;\" href=\"$urlPath/viewtopic.php?f=$row[forum_id]&t=$row[topic_id]&p=$row[post_id]#p$row[post_id]\" TARGET=\"_top\">" .
$row["topic_title"] .
"</a></font><br/><br/>";
}
print "<hr/>";
print "<a style=\"color:red; text-decoration: none;\" href=\"http://solormen.dk/phpbb3/viewtopic.php?f=4&t=39\" TARGET=\"_top\" color=\"Black\">Vind en flot handelshjemmeside til en værdi 10.000kr </a><br/><br/>";
mysql_free_result($result);
mysql_close($link);
?>