Jump to content

Pilots last flights


mattsmith

Recommended Posts

<?php
$allpireps = PIREPData::getLastReports(Auth::$userinfo->pilotid, 5);
foreach($allpireps as $pirep) {
	echo $pirep->code.$pirep->flightnum.' | '.$pirep->depicao.' - '.$pirep->arricao;
	echo '<br />';
}
?>

Did this blind, so I could be wrong.

Edited by web541
added extra code
Link to comment
Share on other sites

Has the pilot filed any flights?

Try this

<?php
$allpireps = PIREPData::getLastReports(Auth::$userinfo->pilotid, 5);
if(!$allpireps) {
	echo 'No PIREPS Found For This Pilot!';
} else {
  foreach($allpireps as $pirep) {
      echo $pirep->code.$pirep->flightnum.' | '.$pirep->depicao.' - '.$pirep->arricao;
      echo '<br />';
  }
}

echo '<br />';
echo '<pre>';
print_r($allpireps);
echo '</pre>';
?>

 

Link to comment
Share on other sites

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...