欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

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

程序员文章站 2024-01-29 12:27:58
...
背景:
从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']} ";
}

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


回复讨论(解决方案)

echo "
{$row['username']}
{$row['onoff']}
{$row['intime']}
";if ($nowtime>=$syntime)    echo "
{$row['syntime']}";else    echo "{$row['syntime']}";echo "{$row['device']}
";if ($row['a' ]== "无")    echo "
{$row['a']}";else    echo "{$row['a']}";if ($row['b' == "无"])    echo "{$row['a']}";else    echo "{$row['b']}";echo "{$row['person']}
{$row['dtime']}
";

echo "
{$row['username']}
{$row['onoff']}
{$row['intime']}";if ($nowtime>=$syntime)    echo "{$row['syntime']}";else    echo "{$row['syntime']}";echo "{$row['device']}
";if ($row['a' ]== "无")    echo "
{$row['a']}";else    echo "{$row['a']}";if ($row['b'] == "无")    echo "{$row['b']}";else    echo "{$row['b']}";echo "{$row['person']}
{$row['dtime']}
";


纠正下

不对,错位了。

正确了。感谢。自己多添加了括号,画蛇添足了。感谢感谢!

$syntime_style = $nowtime>=$syntime ? ' styly="color:red"' : '';
$a_style = $row['a'] == '无' ? ' styly="color:red"' : '';
$b_style = $row['b'] == '无' ? ' styly="color:red"' : '';

echo "

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