php顯示中 表格中有兩例相同內容的輸出方式
阿新 • • 發佈:2019-01-29
<table cellspacing="0" cellpadding="0"> <thead> <tr><th class="t1">教程名稱</th> <th class="t2">難度</th> <th class="t6">時間</th> <th class="t1">教程名稱</th> <th class="t2">難度</th> <th class="t6">時間</th> </tr></thead> <tbody><tr> <td class="t1"><a href="#">一週新聞小測驗0:0</a></td> <td class="t2">入門級</td> <td class="t3">7月12號到7月13號</td> <td class="t1"><a href="#">一週新聞小測驗1:1</a></td> <td class="t2">入門級</td> <td class="t3">7月2號到7月3號</td> </tr> <tr> <td class="t1" style="background: none repeat scroll 0% 0% rgb(244, 244, 244);"><a href="#">一週新聞小測驗2:0</a></td> <td class="t2" style="background: none repeat scroll 0% 0% rgb(244, 244, 244);">入門級</td> <td class="t3" style="background: none repeat scroll 0% 0% rgb(244, 244, 244);">8月20日--8月23日</td> <td class="t1" style="background: none repeat scroll 0% 0% rgb(244, 244, 244);"><a href="#">一週新聞小測驗3:1</a></td> <td class="t2" style="background: none repeat scroll 0% 0% rgb(244, 244, 244);">入門級</td> <td class="t3" style="background: none repeat scroll 0% 0% rgb(244, 244, 244);">8月20日--8月23日</td> </tr> </tbody></table>
<php>
foreach($list as $key=>$item){
if($key % 2 ==0){
</php>
<tr>
<php>
}
</php>
<td class="t1"><a href="#"><php>echo $item['wj_title'];echo $key.':'.$key%2;</php></a></td>
<td class="t2"><php>echo $item['wj_nd']</php></td>
<td class="t3"><php>echo $item['wj_time_rank']</php></td>
<php>
if($key % 2 ==1){
</php>
</tr>
<php>
}
}
</php>