Moderators joeri Posted February 4, 2010 Moderators Report 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
Administrators Nabeel Posted February 4, 2010 Administrators Report 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
HighFlyerPL185 Posted April 16, 2013 Report 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
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.