Jump to content

pilot roster only show pilots from 1 hub


Recommended Posts

  • Moderators
Posted

hello i have a question

i want to show only the pilots from 1 hub on my pilots roster

can somebody point me in  the correct direction on how to get that info out off the database.

gr joeri

  • Administrators
Posted
$params = array(
'p.hub' => 'your hub',
);

$pilots = PilotData::findPilots($params);

foreach($pilots as $pilot)
{
echo "{$pilot->firstname} {$pilot->lastname}<br />";
}

  • 3 years later...
Posted

I'm trying to do this but it just throws 'Invalid argument supplied for foreach()' and I'm completely puzzled:

$params = array(
    'p.hub' => 'EGKK',
);

$pilots = PilotData::findPilots($params);

if (is_array($values))
{
   foreach($pilots as $pilot)
   {
           echo "{$pilot->firstname} {$pilot->lastname}<br />";
   }
}

Preferably, I'd also like the icao to be dynamic, and work with $airport->icao. I assume this can be achieved by doing 'p.hub' => $airport->icao?

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
×
×
  • Create New...