使用PHP代码更改标记类

时间:2012-05-30 19:07:45

标签: php syntax conditional-statements

假设我有一个tr

<tr class='condition1'> mysql db record </tr>

如果该记录id也显示在其他表中,我希望它为tr

着色

我的逻辑是这样的:

  

如果记录ID在另一个表中       将类更改为条件2,css将颜色设置为。

希望我让自己清楚明白。 我只是不太确定我的PHP工具,我可以实现这一点。

欢呼声。

1 个答案:

答案 0 :(得分:0)

将所有ID存储在数组中,例如

$ids = array();

然后在每个循环上(我假设)

// If exists, add .color
    <tr class='condition1 <?php echo (isset($ids[$id]) ? 'color' : ''); ?>'> mysql db record </tr>

// Add to array
    $ids[$id] = TRUE;