<form class="f"action="wel.php" method="get">
<input class="inp" type="text" name="mindate" value="<?php echo $mindate ?>" onfocus="HS_setDate(this)" readonly="readonly"/>至
<input class="inp" type="text" name="maxdate" value="<?php echo $maxdate ?>" onfocus="HS_setDate(this)" readonly="readonly"/>
<input class="sub" type="submit" value="统计"/>
</form>
<?php
$sql="SELECT count(*) AS count FROM `khxx` WHERE dates>='".$mindate."' and dates<='".$maxdate."' and `type`='新增' and `area`='城南东'";
$cndx=mysql_result(mysql_query($sql),0);
$sql="SELECT count(*) AS count FROM `khxx` WHERE dates>='".$mindate."' and dates<='".$maxdate."' and `type`='续费' and `area`='城南东'";
$cndf=mysql_result(mysql_query($sql),0);
$sql="SELECT count(*) AS count FROM `khxx` WHERE dates>='".$mindate."' and dates<='".$maxdate."' and `type`='升兆' and `area`='城南东'";
$cnds=mysql_result(mysql_query($sql),0);
$sql="SELECT count(*) AS count FROM `khxx` WHERE dates>='".$mindate."' and dates<='".$maxdate."' and `type`='免费' and `area`='城南东'";
$cndm=mysql_result(mysql_query($sql),0);
$sql="SELECT count(*) AS count FROM `khxx` WHERE dates>='".$mindate."' and dates<='".$maxdate."' and `type`='新增' and `area`='城南西'";
$cnxx=mysql_result(mysql_query($sql),0);
$sql="SELECT count(*) AS count FROM `khxx` WHERE dates>='".$mindate."' and dates<='".$maxdate."' and `type`='续费' and `area`='城南西'";
$cnxf=mysql_result(mysql_query($sql),0);
$sql="SELECT count(*) AS count FROM `khxx` WHERE dates>='".$mindate."' and dates<='".$maxdate."' and `type`='升兆' and `area`='城南西'";
$cnxs=mysql_result(mysql_query($sql),0);
$sql="SELECT count(*) AS count FROM `khxx` WHERE dates>='".$mindate."' and dates<='".$maxdate."' and `type`='免费' and `area`='城南西'";
$cnxm=mysql_result(mysql_query($sql),0);
<tr>
<td>城南东</td>
<td><?php echo $cndx;?></td>
<td><?php echo $cndf;?></td>
<td><?php echo $cnds;?></td>
<td><?php echo $cndm;?></td>
</tr>
<tr>
<td>城南西</td>
<td><?php echo $cnxx;?></td>
<td><?php echo $cnxf;?></td>
<td><?php echo $cnxs;?></td>
<td><?php echo $cnxm;?></td>
</tr>
------解决方案--------------------
查询那块写成函数不是更好点吗
------解决方案--------------------
$sql = "SELECT area, type, count(*) AS count FROM `khxx` WHERE dates>=‘$mindate’ and dates<=‘$maxdate’ group by area, type order by find_in_set(area, '城南东,城南西'), find_in_set(type,'新增,续费,升兆,免费')