php查询mysql 多条件判断输出显示
背景:
从mysql查询各字段值输出并且按照条件用红色字体显示满足条件字段值。
条件:
1.syntime小于当前前一周时间的话显示红色。
2.A字段为"无"的话,显示红色。
3.B字段为"无"的话,显示红色。
图一数据库结构:
图二数据库各字段值:
我的代码:(我只满足了第一个条件,其余两个条件不知道该怎么来写)
$sql = "select username, onoff, intime, syntime, device, a,b,person,dtime from cdmobile order by username desc ";
$rst = mysql_query($sql);
while($row=mysql_fetch_array($rst)){
$nowtime=strtotime('+7 day');
$syntime=strtotime($row['syntime']) ;
if($nowtime>=$syntime){
echo "
<br />echo?"<tr><td>{$row['username']}</td><td>{$row['onoff']}</td><td>{$row['intime']}</td>";<br />if?($nowtime>=$syntime)<br />????echo?"<td? style="max-width:90%">{$row['syntime']}</td>";<br />else<br />????echo?"<td>{$row['syntime']}</td>";<br />echo?"<td>{$row['device']}</td><td>";<br />if?($row['a'?]==?"无")<br />????echo?"<td?style='color:red'>{$row['a']}</td>";<br />else<br />????echo?"<td>{$row['a']}</td>";<br />if?($row['b']?==?"无")<br />????echo?"<td?style='color:red'>{$row['b']}</td>";<br />else<br />????echo?"<td>{$row['b']}</td>";<br />echo?"<td>{$row['person']}</td><td>{$row['dtime']}</td></tr>";<br />