好吧,如果状态为 1,则为“有效的保险事件”,如果为 2,则为“已完成的保险事件”。
if(!empty($ins_event))
{
echo "<tr><td> <img src='/check-icon.gif'> <a href='". matry::here(array('event_id'=>$ins_event['id'])) . "'>" . ( $ins_event['status'] == 2 ? "Completed Insurance Event": "Active Insurance Event") . "</a></td></tr>";
}
else
{
echo "<tr><td>" . cbox_return() . "<a href='". matry::here_to('new', array('tfilt'=>'IN', 'pfilt'=>$patient->code)) . "' style='color: #000; color:$rx_image_color'>**Ins Event Not Created**</td></tr>";
}
我在这里有一个颜色变量:
<?php
$rx_event_colors = $rx_ev_status = '#009933';
?>
我如何使用此变量来获取 2 的状态并更改字体颜色。
我应该分解脚本并使用 if {} else {} 语句吗?
更新代码:
echo "<tr><td> <img src='/check-icon.gif'> <a href='". matry::here(array('event_id'=>$ins_event['id'])) . "'" . ( $ins_event['status'] == 2 ? ' style="color: ' . $rx_ev_status . '">Completed Insurance Event' : '>Active Insurance Event') . "</a></td></tr>";