Nếu tôi là bạn, tôi sẽ tạo một hàm ánh xạ những ngày còn lại thành màu:
function traffic_light($days){
if($days <= 7) return 'red';
else if($days <= 30) return 'yellow';
else return 'green';
}
Và sau đó thay đổi mã hiển thị các dòng để sử dụng nó để chọn màu:
echo "<p>Insurance expires in <font color=\"".traffic_light($days)."\">{$row['expire_date']} day(s)</font></p>";