On the Recent Flights on the front Page of the website it keeps showing the date of 01/01/1970, it should show the date the Pirep was filed.
Here is the code I am using:
<?php # RECENT FLIGHTS ;?>
<div class=“col-md-6”>
<div class=“hr-title hr-long center”><abbr>Recent Flights</abbr></div>
<div class=“table-responsive”>
<table class=“table table-condensed table-hover”>
<thead>
<tr>
<th>Flight</th>
<th>Route</th>
<th>Date</th>
</tr>
</thead>
<tbody>
<?php
$pirep_list = PIREPData::getRecentReportsByCount(5);
if($pirep_list){
foreach($pirep_list as $pirep) {
?>
<tr>
<td><a href=“<?php echo url(‘/pireps/viewreport/’.$pirep->pirepid);?>”><?php echo $pirep->code.$pirep->flightnum?></a></td>
<td><?php echo $pirep->depicao.’ - '.$pirep->arricao;?></td>
<td><?php echo date(DATE_FORMAT, strtotime($report->submitdate)); ?></td>
</tr>
<?php
} }
?>