Thank you for your help, I think you are misunderstanding me as I am already doing what you suggested. Here is the results page.
<html>
<head>
<meta name="GENERATOR" content="Microsoft FrontPage 5.0">
<meta name="ProgId" content="FrontPage.Editor.Document">
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
<title>New Page 8</title>
<meta name="GENERATOR" content="Microsoft FrontPage 5.0">
<meta name="ProgId" content="FrontPage.Editor.Document">
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
<title>New Page 9</title>
</head>
<body>
<?
include("dbinfo.inc.php");
mysql_connect(localhost,$username,$password);
@mysql_select_db($database) or die( "Unable to select database");
$query="SELECT * FROM parks ORDER BY name";
$result=mysql_query($query);
$num=mysql_numrows($result);
mysql_close();
$i=0;
while ($i <1) {
$row = mysql_fetch_array($result);
$name = $row["name"];
;
?>
<div align="center">
<center>
<table border="0" cellpadding="2" style="border-collapse: collapse" bordercolor="#111111" width="571" id="AutoNumber1" height="56">
<tr>
<td height="74">
<p align="left"><font face="Arial" size="6" color="#74914F">
<b>TEXAS CAMPGROUNDS, PARKS, & LAKES </b></font>
<font face="Arial" size="1" color="#74914F"> </font></td>
</tr>
<tr>
<td bgcolor="#003366" height="1" width="634">
<font face="Arial">
<img src="file:///C:/Documents%20and%20Settings/Nick%20Copeland/My%20Documents/My%20Webs/2006/1.gif" alt border="0" height="3" hspace="0" vspace="0" width="634"></font></td>
</tr>
<tr>
<td width="567" height="1"></td>
</tr>
<tr>
<td width="567" height="1"><font face="Arial"><span class="cnnBigPrint">
<span style="color: rgb(116, 145, 79)"><b>FIND A </b></span></span></font>
<span class="cnnBigPrint"><font face="Arial" color="#74914F">
<b>CAMPGROUND, PARK OR LAKE
<br />
</b>
</font><font face="Arial">
Texas Camping Forum offers information on over 800 parks including state &
city parks, campgrounds & RV parks and lakes for fishing, boating and
water sport activities. If you are looking for a particular place not
listed and you would like for us to include it. Then please feel free to
Contact Us and we will be more then happy to list it. We will be expanding
our database in the near future to include hunting ranches and other
hunting spots of interest. In the meantime select a location from below to
get more information.</font></span></td>
</tr>
<tr>
<td width="567" height="1"></td>
</tr>
<tr>
<td width="567" height="28">
<font size="4"> </font><p>
</td>
</tr>
<tr>
<td width="567" height="6">
<font face="Arial Narrow" size="2">Your Search returned <b>(NUMBER) </b>
locations<b> </b>that matched your criteria .
Search Again</font></td>
</tr>
<tr>
<td width="567" height="24">
</td>
</tr>
<tr>
<td width="567" height="1" bgcolor="#DDDEC8">
</td>
</tr>
<tr>
<td width="567" height="1">
<font face="Arial Narrow" size="3"><?echo "$name";?></font>
<?
$i++;
}
?></font></td>
</tr>
<tr>
<td width="567" height="1">
</td>
</tr>
<tr>
<td width="567" height="1">
<font face="Arial Narrow" size="2"> </font></td>
</tr>
</table>
</center>
</div>
</body>
</html>
Here is what it looks like without info.
http://www.texascampingforum.com/2006/index.php?page=parks/results
It echos info, just not when it's searched from from the DB.
I broke it downto one entry to make it easier to follow.
-Thanks