日期:2014-05-17 浏览次数:20452 次
<?php
while ( $rs = mysql_fetch_array($result) ){
$arr[]=$rs;
?>
<?php echo $month==mysql_num_rows($result)?"合计: $month 个月":" "; ?>
<tr><td width="30%" height="20">
<?php
for($i= 0;$i<$month;$i++)
{
echo $arr[$i]['date'];
}
?>
</td><td width="50%"></td></tr>
<?php
}
?>