在我的表格中有一个月的每日收支摘要 在此显示每日汇总, 我想在点击该行的同时显示当天的详细报告,而在再次点击的同时隐藏该行, 我怎样才能做到这一点 我正在插入鳕鱼的模型
<?php
$date1=date('Y-m-d',strtotime('2018-01-01'));
$date2=date('Y-m-d',strtotime('2018-01-31'));?>
<table border="1"><thead><tr><th>Date</th><th>Total Payment</th><th>Total Receipt</th><th>Balance</th></tr></thead>
<tbody><?php
while($date1<=$date2){
?>
<tr><td><?php echo $date1;?></td><td>Payments</td><td>Receipts</td><td>Balance</td></tr>
<?php
$date1=date('Y-m-d',strtotime("+1 day",strtotime($date1)));
}?></tbody></table>
听到我想在单击该行时显示当天的详细信息,并在再次单击时将其隐藏 详细报告的代码是
<tr><td>particular</td><td>Paid</td><td>Receipt</td></tr>
在这种情况下,数据将来自具有相应日期的数据库