This topic is locked

What is the Syntax if field is NULL

10/26/2009 2:17:37 PM
PHPRunner General questions
J
jmccullough author

Can I change the Rowcolor if the value of a field is NULL ? And if so, how would I code that based on the field [Fname]? And would I put that code on the List Page: After record processed?

J
Jane 10/28/2009

Hi,
here is a sample:

if (!$data["Fieldname"])

$row["rowstyle"]='style="background:blue"';