I know this is a php forum, but i'm still having trouble with my stuff displaying properly in IE, stupid non-standards compliant browser. here's the page
http://www2.truman.edu/~d1514/Deltasig/index.php
everything is shifted to the left of the page, need help getting the title and the news section centered accross both columns.
php file;
while($row = mysql_fetch_array($result))
{
$topic = $row['topic'];
$author = $row['author'];
$date = $row['date'];
$news = $row['news'];
?>
<table width="500px" cellpadding="0" cellspacing="0">
<tr><th width="500px"><div align="center"><?php echo $topic; ?></div></th></tr>
<tr><td><?php echo $news; ?></td></tr>
<tr><th width="250px">Posted by:<?php echo $author; ?></th>
<th width="250px"><div align="right"><?php echo $date; ?></div></th></tr>
</table>
<br />
<br />
That's it. Thanks for any help.
btw the display looks ok in Mozilla Fire Fox, just the news isn't to the left margin. Also, is there a way i can get it to not display the number of rows that it found?