Moderators joeri Posted February 4, 2010 Moderators Report Share Posted February 4, 2010 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 Quote Link to comment Share on other sites More sharing options...
Administrators Nabeel Posted February 4, 2010 Administrators Report Share Posted February 4, 2010 $params = array( 'p.hub' => 'your hub', ); $pilots = PilotData::findPilots($params); foreach($pilots as $pilot) { echo "{$pilot->firstname} {$pilot->lastname}<br />"; } Quote Link to comment Share on other sites More sharing options...
HighFlyerPL185 Posted April 16, 2013 Report Share Posted April 16, 2013 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? Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.