Quantcast
Channel: ASPRunner forums
Viewing all articles
Browse latest Browse all 2586

Dates and Calculating days and changing colour of row

$
0
0
I have Two Feilds,
DateDue
DateArrived

I want to see if the difference is more than two days and the if it is colour the row, I am doin gthis on the list page After REcord is processed.


datediff($data['DateDue'],$data['Datearrived']) as days_diff;
If days_diff > 2
$record["css"]="background:yellow;";

However I get error on the first line :

syntax error, unexpected 'as' (T_AS) in line 37

Viewing all articles
Browse latest Browse all 2586

Trending Articles