<td height="24" valign="middle"><strong>餐馆一览表:</strong><br/>
<?php
require_once "lib/conn.php";
$sql_select="select * from beijing";
$result=mysql_query($sql_select);
while($row=mysql_fetch_array($result))
{
?>
<table>
<td width="180"><?=$row['HotelsName']?></td>
</table>
<?php
}
?>
</td>