Stefan Posted November 20, 2012 Report Share Posted November 20, 2012 Hello can anyone help me with a simple statistics that i can put on my website? Such as Hours flown, Flights flown, Pilots etc... Also i need to put the pilot information in my custom acars aswell, can anyone tell me how to change that image? ScreenShot080.bmp Quote Link to comment Share on other sites More sharing options...
Stealthbird97 Posted November 20, 2012 Report Share Posted November 20, 2012 Total Pilots: <?php echo StatsData::PilotCount(); ?> <br /> Total Flights: <?php echo number_format(StatsData::TotalFlights()); ?><br /> Total Flights Today: <?php echo StatsData::totalflightstoday(); ?><br /> Total Flight Hours: <?php echo number_format(StatsData::TotalHours(), 0); ?> hrs<br /> Total Pax Carried: <?php echo number_format(StatsData::totalpaxcarried()); ?><br /> Total Fuel Burned: <?php echo number_format(StatsData::totalfuelburned(), 0); ?> kgs<br /> Total Flight Miles: <?php echo number_format(StatsData::totalmilesflown()); ?> nm<br /> Total Aircraft In Fleet: <?php echo StatsData::totalaircraftinfleet(); ?><br /> Total Schedules: <?php echo number_format(StatsData::totalschedules()); ?><br /> Is this what you're looking for. Put it in your layout.tpl Quote Link to comment Share on other sites More sharing options...
Stefan Posted November 20, 2012 Author Report Share Posted November 20, 2012 Thanks alot mate Quote Link to comment Share on other sites More sharing options...
shiljo Posted April 5, 2013 Report Share Posted April 5, 2013 Any chance to put cargo carried inside? thank you, i miss that code... 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.