Add the following function to your StasData.class.php:
public function TotalCargoCarried($airline_code = '')
{
return self::getTotalForCol(array(
'table' => 'pireps',
'column' => 'load',
'airline_code' => $airline_code,
'where' => array(
'accepted' => PIREP_ACCEPTED,
'flighttype' => 'C',
),
'func' => 'SUM',
)
);
}
Add the following line to your <div> :
<strong>Cargo Carried: </strong><?php echo StatsData::TotalCargoCarried(); ?> lbs<br>
Screenshot: