Quote Originally Posted by softpk View Post
This code is working thank you

The color can be changed on the whole row? PPM Due Date is just the text color is changed
You are welcome..

For the text in the whole row..

change
PHP Code: 
                                                echo " <td>" $row->dateinsrep "</td>";  
                                                echo 
"<td>" $row->servicereport "</td>";  
                                                echo 
"<td>" $row->hospitalname "</td>";  
                                                echo 
"<td>" $row->description "</td>";  
                                                echo 
"<td>" $row->model "</td>";  
                                                echo 
"<td>" $row->serial "</td>";  
                                                echo 
"<td>" $row->dinstall "</td>";  
                                                echo 
"<td>" .$date  ."</td>";  
                                                echo 
"<td>" $row->warranty "</td>"
to
PHP Code: 
                             echo $colorPrefix " <td>" $row->dateinsrep "</td>";   
                                                echo 
"<td>" $row->servicereport "</td>";   
                                                echo 
"<td>" $row->hospitalname "</td>";   
                                                echo 
"<td>" $row->description "</td>";   
                                                echo 
"<td>" $row->model "</td>";   
                                                echo 
"<td>" $row->serial "</td>";   
                                                echo 
"<td>" $row->dinstall "</td>";   
                                                echo 
"<td>" .$date  ."</td>";   
                                                echo 
"<td>" $row->warranty "</td>"$colorSuffix