The code in the post you mentioned has the following part:
<?php
$flights = PIREPData::getLastReports($userinfo->pilotid, '10');
$string = "";
foreach($flights as $flight)
{
$string = $string.$flight->depicao.'+-+'.$flight->arricao.',+';
}
?>
Now change it to the following:
<?php
$flights = PIREPData::getLastReports($userinfo->pilotid, '10');
$string = "";
foreach($flights as $flight)
{
if($flight->code =="ABC")
{
$string = $string.$flight->depicao.'+-+'.$flight->arricao.',+';
}
}
?>
"ABC"is your airline code.