希望这是有道理的,我希望能画出清晰的画面。
<?php $rx_event_color = $rx_image_color = '#FF0000';
if ($a['rx_event_exists'] == 1) { $rx_event_color = '#00FF00'; }
if ($a['rx_scanned'] == 1) { $rx_image_color = '#00FF00'; }
else if ($a['rx_scanned'] > 1) { $rx_image_color = '#FFFF00'; }
?>
我不希望整个背景 td 改变颜色,只改变基于事件的 td 内的文本(sql 中的数据)
if ($a['rx_event_exists'] == 0)
{
echo "<tr><td style='background:$rx_event_color'><a href='"
. matry::here_to('new', array('tfilt'=>'WR', 'pfilt'=>$patient->code))
. "'>**Rx Event Not Created**</a></td></tr>";
}
我试图将背景更改为颜色,并尝试将其添加到 div 中......我认为它应该比原来更容易......这就是我在这里问的原因。提前感谢我的朋友们。