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