Heim > Artikel > Backend-Entwicklung > php 想点击星期一时获取本月所有星期一的数据新手 急
我index.php 页面上有
<li> <a href="resuindex.php?w=1">星期一</a></li><li> <a href="resuindex.php?w=2">星期二</a></li><li> <a href="resuindex.php?w=3">星期三</a></li><li> <a href="resuindex.php?w=4">星期四</a></li><li> <a href="resuindex.php?w=5">星期五</a></li><li> <a href="resuindex.php?w=6">星期六</a></li><li> <a href="resuindex.php?w=7">星期日</a></li>
$w = isset($_GET['w'])? $_GET['w'] : '';if(!in_array($w, array(1,2,3,4,5,6,7))){ echo 'w error'; exit();}// 执行查询db语句,然后输出