0

如果没有图像,它会在 File 上返回 No Rx,这可以正常工作。如果有图像,它会在蓝色链接中返回Rx Requires Validation 。上传图像时,它是 0,当它被选择为活动时,它变成 1 作为数据库中的活动字段。我不确定如何将所有图像设置为 0 蓝色,现在将活动图像设置为 1 绿色。我认为我的逻辑在这一点上已经被破坏了..任何帮助将不胜感激。

if ($a['rx_scanned'] === null)
    {
         echo "<tr><td>**No Rx on File**</td></tr>"; 
    }


elseif ($a['rx_scanned'] = 1 ) 
    {
  $rx_image_color = '#009933';

    echo "<tr><td> &nbsp;<img src='http://sqlserver/test/tim/leaflet/check-icon.gif'>&nbsp;<a href='" 
            . matry::base_to('patient/image/view', array('event_id'=>$event->id, 'patient_id'=>$patient->code, 'uniqueid'=>$a['image_id'])) 
            . "' style='color:$rx_image_color'>Valid Rx on File</a></td></tr>"; 

    }
else   
    { 
      $rx_image_color = '#3366FF';
      echo "<tr><td>" . cbox_return($name) . "<a href='" 
            . matry::base_to('patient/image/view', array('event_id'=>$event->id, 'patient_id'=>$patient->code, 'uniqueid'=>$a['image_id'])) 
            . "'>**Rx Requires Validation**</a></td></tr>"; 
    }   

echo "<tr><td></td></tr>";
4

1 回答 1

1

如果我对您的理解正确,您是在说 rx_scanned 是一个布尔值,而不是一个数字。

您需要更改条件以检查布尔值(我不是 PHP 开发人员,但我想像这样)

if ($a['rx_scanned']) {
  $rx_image_color = '#009933';
   // Insert your stuff here.
}
else {
  $rx_image_color = '#3366FF';
  echo "<tr><td>**No Rx on File**</td></tr>";
}
于 2013-02-09T01:56:25.343 回答