Jump to content

flyalaska

Members
  • Posts

    1941
  • Joined

  • Last visited

  • Days Won

    17

Everything posted by flyalaska

  1. Also will be caused for pilots flying with plane with 100% fuel for small flights.
  2. I am on Version 2.1 v2.1.935
  3. I noticed last night that my VA's Total Hours is not changing. It has been stuck on 14,777 hours. Today with 13 flights already put in, it has not changed. Any idea whats causing this? Resetting the hours didn't help.
  4. Works perfect. Thank you! http://www.flyaka.com/index.php/acars
  5. That was from the posters site.
  6. The code doesn't work for me either. Im sure it has to go in the right spot. http://www.globalvirtualair.com/index.php/acars
  7. Don't buy it on my account. If you were already planing on it, I would really appreciate it.
  8. I been trying to get this to work for a few months now. Only able to get to work with my IPB, Not many people stay connected to IPB. Here is the details that I need, if someone can help me out. User Table Username Field User Avatar Field
  9. Is anyone using ArrowChat, and able to get it to use the phpvms database? - http://www.arrowchat.com
  10. yup, Jeff will make it anyway you want it. He does an awesome job.
  11. I had the same question before. You are safe. The old PIREPS will still show as the one that the pilot flew, even if you change the flight number.
  12. Anyone know how to make the random screenshot link to the picture? I want to put it in a lightbox.
  13. I have found a better feed generator. The one I originally posted would have problems, If you have already used the link I provided, You should switch to this link http://feed2js.org/index.php?s=build
  14. <strong>Total Hours Flown: </strong><?php echo number_format(StatsData::TotalHours(), 0); ?><br />
  15. It didn't
  16. I made it myself
  17. Didn't work either. This makes no sense, as it works on every other table.
  18. I use Word press, than just have rss feed that certain catagory for your hub. lol@ newbie with 1500+ post.
  19. That didn't work either!
  20. That is the same exact one I am using. I have it on all my table, Pilot Roster, PIREPS, Downloads, Schedules, etc. Just wont work on the Hub Roster.
  21. Thank you!
  22. What am I searching for, Keywords?
  23. I am having a little trouble getting my hub roster to paginate. Here is the hub page in question - http://www.flyaka.com/index.php/Anchorage I have no problem paginating my other tables. This is the hub roster code: <!-- Hub Roster --> <div class="box"> <?php $pilots = PilotData::getAllPilotsByHub('PANC'); ?> <?php if(!$pilots) { echo 'There are no pilots in that hub, so there must be at least one pilot so the hub can run.'; return; } ?> <table id="mytable"width="100%" border="0" cellspacing="0" cellpadding="0" class="aka_table"> <tr> <tr> <th width="112"><div align="center"><u>Pilot ID</u></div></th> <th width="345"><u>Pilot Name</u></th> <th width="210"><u>Rank</u></th> <th width="170"><u>Hours</u></th> <th width="190"><u>Flights</u></th> </tr> <?php foreach ($pilots as $pilot) { ?> <tr> <td align="left"><div align="center"><a href="<?php echo url('/profile/view/'.$pilot->pilotid);?>"> <?php echo PilotData::GetPilotCode($pilot->code, $pilot->pilotid)?></a></div></td> <td><div align="center"><?php echo $pilot->firstname.' '.$pilot->lastname?></div></td> <td><div align="center"><?php echo $pilot->rank;?></div></td> <td><div align="center"><?php echo $pilot->totalhours; ?></div></td> <td><div align="center"><?php echo $pilot->totalflights; ?></div></td> </tr> <?php } ?> </table> <script type="text/javascript"> $(document).ready(function() { $('#mytable').dataTable( { "sPaginationType": "full_numbers" } ); } ); </script> </div> <div class="clear"></div> <!-- Hub Roster --> Any help would be appreciated
  24. Thank You!
  25. How do I put comas in my stats? My Total Hours look like this " Total Flight Hours:14777.43" and I want to place the coma in there, 14,777.43
×
×
  • Create New...