gpt4 book ai didi

PHP如何列出所选月份的所有总收入

转载 作者:搜寻专家 更新时间:2023-10-30 23:47:23 24 4
gpt4 key购买 nike

如何显示当月所有日期和每天的总收入。我认为我的 monthlyreport.php 错得很厉害。我不知道该怎么做。请帮我解决这个问题。这对我很重要。感谢您的帮助。

我的输出是这样的:

Month November
No Date Total earning
1 1/11/2014 100
2 2/11/2014 200
3 3/11/2014 400

我的数据库是这样的:

//tblvisit
Id VisitDate PatientId PatientName DoctorName Symptom Test Diagnosis TotalPrice
1 2014-11-05 123 John mr wong flu checking panadol 31

我的monthlyreport.php:

<tr>
<td>No</td>
<td>Date</td>
<td>Total Earned</td>
</tr>
<?php
for($i=0;$i<mysql_num_rows($SearchResult); $i++)
{
$visitRec = mysql_fetch_array($SearchResult);
echo "<tr> ";
echo "<td>".($i+1)."</td>";
echo "<td>".$visitRec['VisitDate']."</td>";

$total = 0;
$id = $visitRec['Id'];
$date = $_POST['txtSMonth'];
$data = mysql_query("SELECT * FROM tblvisit WHERE VisitDate ='$date'") or die(mysql_error());
while($row= mysql_fetch_array( $data ))
{
$total += $row['TotalPrice'];
}
echo "<td>".$total."</td>";
echo "</tr>";
}?>

最佳答案

使用以下查询作为内部查询:

    SELECT sum(TotalPrice) FROM tblvisit WHERE VisitDate ='$date' group by VisitDate

希望它对你有用。

关于PHP如何列出所选月份的所有总收入,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26751685/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com