<?
foreach($customer as $customer_details)
{?>
<tr id="customer_details_<?=$customer_details['id']?>">
<?
foreach($dyncust_fields as $dyncust_field)
{
if($dyncust_field['add_to_listing']=='1')
{
echo "<td style='color:green;'>".$customer_details[$dyncust_field['attribute_name']]."</td>";
}
}
?>
</tr>
<? }
?>
这里我写了一些代码来显示动态列的数据,这里我想给特定列的特定数据一个颜色。但它不工作。这里这一行$customer_details[$dyncust_field['attribute_name']]
是用来根据动态列获取表记录的。在这里,$customer_details[$dyncust_field['attribute_name']] == 'cname'
我希望单元格为红色,否则显示绿色。这个怎么做 ?。谁能帮帮我...
郎朗坤
喵喵时光机