Jump to content

Recommended Posts

Posted (edited)
<?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
Posted (edited)

I want to show it in the profile_main

Error:   Warning: Invalid argument supplied for foreach() in /home/u230581216/public_html/lib/skins/crewcenter/profile_main.php on line 119

Edited by mattsmith
Posted

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>';
?>

 

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