Try this ... lots had to be cleaned up / adjusted ...
<table width="100%">
<tr><td width="31%">
<img border="0" src="../images/space.gif" width="200" height="50"></td>
<td width="28%"> </td>
<td width="18%"> </td>
<td width="21%">
<p align="right"></td></tr>
<tr><td width="98%" colspan="4">
<font face='arial' size=2>
<b></b></td>
</tr>
<tr>
<td width="31%" bgcolor="#CCCCCC"><b>Full Name:</b></td>
<td width="28%" bgcolor="#CCCCCC"><b>Address:</b></td>
<td width="18%" bgcolor="#CCCCCC"><b>City:</b></td>
<td width="21%" bgcolor="#CCCCCC"><b>Phone:</b></td></tr>
<?php
include("config.inc.php");
mysql_connect(localhost,$username,$password,$dbname);
mysql_select_db($dbname) or die( "Unable to select database");
$query= "SELECT FullName, Address, City, Phone FROM Signatures ORDER BY FullName DESC LIMIT 0, 100";
$result = mysql_query($query);
while($nt=mysql_fetch_array($result)){
echo "<tr>
<td width=\"31%\">$nt['FullName']</td>
<td width=\"28%\">$nt['Address']</td>
<td width=\"18%\">$nt['City']</td>
<td width=\"21%\">$nt['Phone']</td>
</tr>"
}
mysql_close();
?>
</table>
This tutorial is helpful: http://www.tizag.com/mysqlTutorial/mysqlselect.php