Ok problem solved itself, but thank you
public static function Landingmit($airline_code = '') {
return round(self::getTotalForCol(array(
'table' => 'pireps',
'column' => 'landingrate',
'airline_code' => $airline_code,
'where' => array('accepted' => PIREP_ACCEPTED),
'func' => 'avg',
)),0);
}
Joe