我有一个带有property_id
, property_name
,的数据库property_zip
在一个页面上,我使用以下方式加载所有邮政编码:
<?php include"connection.php";
$checke = "SELECT DISTINCT porperty_zip FROM property_list ";
$rsd = mysql_query($checke); ?>
<table width="600" style="font-size:12px; border:1px solid #000000; text-align:center;" cellpadding="0" cellpadding="0">
<tr>
<td><strong>Zip</strong></td> </tr>
<?php
while($row = mysql_fetch_array($rsd))
{ ?>
<tr> <td><h2><?php echo $row['porperty_zip']; ?></h2></td> </tr>
<?php
}
?>
输出:
92508
92566
现在任何人都可以帮我添加每个邮政编码的属性计数。
我希望输出看起来像:
92508 (15)
92566 (20)