根据MySQL查询中的结果显示图像,使用PHP

时间:2017-12-17 18:56:55

标签: php mysql twitter-bootstrap

我需要根据结果更改值。 在这种情况下,如果我的行"状态"是"活跃"我想把这样的东西放在一张桌子里:

<td>'.$row['register_status'].'</td>
<td>'if($row['status']=='Active'){print "<span class="glyphicon glyphicon-time" aria-hidden="true" style="color:orange"></span>";}'</td>
<td>'.$row['register_status'].'</td>

有什么问题?

编辑:抱歉。我没有把所有代码。这里开始我的数组,我用引号代码但不能运行

if(mysql_num_rows($result) > 0)
{
    $number = 1;
    while($row = mysql_fetch_assoc($result))
    {
            $data .= '<tr>
            <td>'.$row['register_status'].'</td>
            <td>'
            if($row['status']=='Active')
            {
            echo '<span class="glyphicon glyphicon-time" aria-hidden="true" style="color:orange"></span>';
            }
            '</td>
        </tr>';
            $number++;
    }
}
else
{
    // records now found 
    $data .= '<tr><td colspan="6">Records not found!</td></tr>';
}

$data .= '</table>';

echo $data;

0 个答案:

没有答案