Harry, this is everything I have done to get it to show up on my main page.
this is the whole code in /home/yoursite/public_html/core/templates/frontpage_recentbids.tpl
<div id="mainbox">
<h3><img src="http://www.oneworldvs.net/lib/images/icons/flights.jpg">Flight Departures Board</h3>
<?php
if(!$lastbids)
{
echo '<p align="center">No flights have currently been booked</p>';
return;
}
?>
<table width="100%" border="1" bordercolor="#FFFFFF" class="tablesorter" id="tabledlist">
<thead>
<tr align="center" valign="middle" bgcolor="#0079B2">
<th height="25" width="15%"><div align="center">Flight Number</div></th>
<th height="25" width="13%"><div align="center">Depart</div></th>
<th height="25" width="13%"><div align="center">Arrive</div></th>
<th height="25" width="20%"><div align="center">Pilot Name</div></th>
<th height="25" width="15%"><div align="center">Aircraft</th>
<th height="25" width="12%"><div align="center">Tail No.</div></th>
<th height="25" width="12%"><div align="center">Flight Time</div></th>
</tr>
</thead>
<tbody>
<?php
foreach($lastbids as $lastbid)
{
?>
<tr align="center" valign="middle" bgcolor="#DFF4FF">
<td height="25" width="15%" align="center"><?php echo $lastbid->code . $lastbid->flightnum; ?></a> </td>
<td height="25" width="13%" align="center"><span><?php echo $lastbid->depicao; ?></span></td>
<td height="25" width="13%" align="center"><span><?php echo $lastbid->arricao; ?></span></td>
<?php
$params = $lastbid->pilotid;
$pilot = PilotData::GetPilotData($params);
$pname = $pilot->firstname;
$psurname = $pilot->lastname;
?>
<td height="25" width="20%" align="center"><span><?php echo $pname; ?> <?php echo $psurname; ?></span></td>
<td height="25" width="15%" align="center"><span><?php echo $lastbid->aircraft; ?></span></td>
<td height="25" width="12%" align="center"><?php echo $lastbid->registration?></td>
<td height="25" width="12%" align="center"><span><?php echo $lastbid->flighttime; ?> Hours</span></td>
</tr>
<?php
}
?>
</tbody>
</table>
<hr>
</div>
Now, in the page you want it to show, place this code:
<?php MainController::Run('FrontBids', 'RecentFrontPage', 5); ?>
The number 5 can be changed to any number to show how many bids you want to show at one time.