Jump to content

image for a airliner.


michael Kraan

Recommended Posts

its not working for my schedule result page.

<thead>

<tr style="height:12px; font-size:14px; font-weight:normal">

<th width="19%" align="center">logo</th>

<th width="13%" align="center">Flight ID</th>

<th width="16%" align="center">Origin</th>

<th width="16%" align="center">Destination</th>

<th width="13%" align="center">Aircraft</th>

<th width="23%" colspan="2" align="center">Options</th>

</tr>

<tr>

<td width="19%" align="center">------------</td>

<td width="13%" align="center">------------</td>

<td width="16%" align="center">------------</td>

<td width="16%" align="center">------------</td>

<td width="13%" align="center">------------</td>

<td width="23%" colspan="2" align="center">------------</td>

</tr>

</thead>

<tbody>

<?php

foreach($allroutes as $route)

{

if(Config::Get('DISABLE_SCHED_ON_BID') == true && $route->bidid != 0)

{

continue;

}

if(Config::Get('RESTRICT_AIRCRAFT_RANKS') === true && Auth::LoggedIn())

{

if($route->aircraftlevel > Auth::$userinfo->ranklevel)

{

continue;

}

}

?>

<tr style="height:12px; font-size:14px; font-weight:normal;">

<td width="19%" align="center" valign="middle"><img src="'.fileurl('images/airline/'.$pirep->code.'.jpg').'" alt="'.$airline->name.'" /></td>

<td width="13%" align="center" valign="middle"><?php echo $route->code . $route->flightnum?></td>

<td width="16%" align="center" valign="middle"><?php echo $route->depicao;?></td>

<td width="16%" align="center" valign="middle"><?php echo $route->arricao;?></td>

<td width="13%" align="center" valign="middle"><?php echo $route->aircraft;?></td>

what in bold is, what I made.

hope someone can help me

greets

Michael kraan

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
×
×
  • Create New...