Hello, I was wondering if some could help me out with something. I am wanting to remove the space between the lines because it is throwing my tables off. You can see the spaces here
http://www.texascampingforum.com/2006/recent.php
Here is the code that produces it and I can't seem to find anything to remove the breaks.
<?
include("dbinfo2.inc.php");
$con = mysql_connect('localhost', $username, $password) or die('Unable to connect to localhost');
mysql_select_db($database) or die( "Unable to select database");
$query="SELECT * FROM phpbb_topics ORDER BY topic_last_post_id DESC LIMIT 5";
$result=mysql_query($query);
$num=mysql_num_rows($result);
mysql_close();
while ($row = mysql_fetch_array($result)) {
$topic_id = $row["topic_id"];
$topic_title = $row["topic_title"];
?>
<p align="left">
<font face="Arial Narrow" size="2"><?echo "<a href='".$forumroot."viewtopic.php?t=".$topic_id."'>$topic_title</a>$topic_time";?></font></p>
<?
}
?>
-Thanks