php查询mysql 多条件判断输出展示

WBOY
Libérer: 2016-06-13 11:58:37
original
1822 Les gens l'ont consulté

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 "

{$row['username']} {$row['onoff']} {$row['intime']} {$row['syntime']} {$row['device']} >{$row['a']}{$row['b']} {$row['person']} {$row['dtime']} ";
 } 
else 
echo " {$row['username']} {$row['onoff']} {$row['intime']} {$row['syntime']} {$row['device']} {$row['a']} {$row['b']} {$row['person']} {$row['dtime']} ";
 } 

请各位大婶帮忙完善一下代码。要能同时满足三个条件的,并且能正确输出,该显示红色的地方显示红色。以下是目前的结果:

------解决方案--------------------
<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 />
Copier après la connexion


纠正下
Étiquettes associées:
source:php.cn
Déclaration de ce site Web
Le contenu de cet article est volontairement contribué par les internautes et les droits d'auteur appartiennent à l'auteur original. Ce site n'assume aucune responsabilité légale correspondante. Si vous trouvez un contenu suspecté de plagiat ou de contrefaçon, veuillez contacter admin@php.cn
Tutoriels populaires
Plus>
Derniers téléchargements
Plus>
effets Web
Code source du site Web
Matériel du site Web
Modèle frontal