Why is this not working? It colors all fields with green. I just want the fields that are true. The [have] field is a boolean. So if true(1) want green if false(0) want white.
if ($data["have"] = True)
$record["have_css"].='background:#98FB98';
else
$record["have_css"].='background:white';