Need help, why can we not change the text color below at $row["rowstyle"]= ?
font-weight:bold; works, font-style:italic; works, font-color:#ffffff; does not work
if ($data["Status"]==3){
$record["css"]='background:#DC143C;';
$row["rowstyle"]='style="font-weight:bold;font-style:italic;font-color:#ffffff;"';
} elseif ($data["Rep"]=="UNA"){
$record["css"]='background:#fafc94;';
} else {
// do nothing
}