我希望每个单元格的边框如下图所示:
<table border="1" width="90%">
<tr>
<th>NAME OF OFFEROR</th>
<th>EMPLOYER</th>
<th>FAMILY/BECHLOR</th>
<th>NATURE OF LEASE</th>
<th>RENT</th>
<th>DEPOSIT</th>
<th>TERM OF LEASE</th>
</tr>
<?PHP
$query=mysql_query("select name,company,categary,lease,tol,rent,deposit from client_enquiry where pro_id='".$property."'") or die(mysql_error());
while($row=mysql_fetch_row($query))
{
echo "<tr><td>".$row[0]."</td><td>".$row[1]."</td><td>".$row[2]."</td><td>".$row[3]."</td><td>".$row[5]."</td><td>".$row[6]."</td><td>".$row[4]."</td></tr>";
}
?>
</table>