Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 02/16/20 in all areas

  1. I think maybe you rushed your release. Two weeks of hard work is just a start for a successful site. Time to start testing everything again and working a bit longer to correct any errors before going live again. As for the schedule search, what happens if you change to the default crystal skin and search?
    1 point
  2. See if this works Find this on line 37 <?php foreach($pireps as $pirep) { Replace it with this (deprecated function, but it works) <?php foreach($pireps as $pirep) { $schedule = SchedulesData::getScheduleByFlight($pirep->code, $pirep->flightnum); Find this <strong>Flight Time: </strong><?php echo $pirep->flighttime; ?> <br /> Now the $schedule variable should be activated, so you should be able to read it like this <strong>Actual Flight Time: </strong><?php echo $pirep->flighttime; ?> <br /> <strong>Scheduled Flight Time: </strong><?php echo $schedule->flighttime; ?> <br /> <strong>Scheduled Aircraft: </strong><?php echo $schedule->aircraft; ?> <br /> <strong>Scheduled Flight Level: </strong><?php echo $schedule->flightlevel; ?> <br />
    1 point
×
×
  • Create New...