markyboy123 Posted November 18, 2014 Report Share Posted November 18, 2014 I have tried my best coding a live flight board type of thing and for some reason everything is in the wrong place ?? and the code for it: <table style="border:1px solid grey;" cellspacing="5" cellpadding="10" bgcolor="#E0EBEB"> <tr> <th width="10%" align="center" style="background-color: #116ed8;">Flight</th> <th width="10%" align="center" style="background-color: #116ed8;">Departure</th> <th width="10%" align="center" style="background-color: #116ed8;">Arrival</th> <th width="20%" align="center" style="background-color: #116ed8;">Pilot</th> <th width="18.5%" align="center" style="background-color: #116ed8;">Status</th> </tr> <?php $results = ACARSData::GetACARSData(); if (count($results) > 0) { foreach($results as $flight) { ?> <tr> <td align="center"><?php if($flight->phasedetail == "Boarding"); elseif($flight->phasedetail == "Preflight"); elseif($flight->phasedetail == "Arrived"); elseif($flight->phasedetail == "On Approach"); elseif($flight->phasedetail == "Cruise"); elseif($flight->phasedetail == "Descending"); elseif($flight->phasedetail == "Pushing Back"); elseif($flight->phasedetail == "Taxiing to Runway"); elseif($flight->phasedetail == "Climbing"); elseif($flight->phasedetail == "Taxiing to Gate"); elseif($flight->phasedetail == "Paused"); elseif($flight->phasedetail == "Level Flight"); elseif($flight->phasedetail == "Taking Off"); elseif($flight->phasedetail == "Cruising"); elseif($flight->phasedetail == "Airborne"); elseif($flight->phasedetail == "Departing"); elseif($flight->phasedetail == " Initial Approach"); elseif($flight->phasedetail == "Final Approach"); elseif($flight->phasedetail == "En Route"); elseif($flight->phasedetail == "Initial Approach"); elseif($flight->phasedetail == "Landed"); elseif($flight->phasedetail == "On Stand"); ?></td> <td align="center"><?php echo $flight->flightnum;?></td> <td align="center"><?php echo $flight->depname;?></td> <td align="center"><?php echo $flight->arrname;?></td> <td align="center"><?php echo $flight->pilotname;?></td> <td align="center"><?php if($flight->phasedetail != 'Paused') { echo $flight->phasedetail; } else { echo "Paused"; }?></font></td> </tr> <?php } } else { ?> <center><tr><td width="20%" colspan="6" style="padding: 5px; font-size: 13px; font-style:italic; font-family:open sans ;"><font color="#116ed8">No Flights in Progress!</font></td></tr></center> <?php } ?> </table> Please Help Quote Link to comment Share on other sites More sharing options...
flyalaska Posted November 19, 2014 Report Share Posted November 19, 2014 You have 5 titles in the header(th) and 6 spots in the content. 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.