Jump to content

Recommended Posts

Posted

i need help. In my ranks page (the module i downloaded from here which has rank + award page) i want to insert the aircraft types allowed as well.

How can i do that/

the current code of the module is

<h3>Pilot Ranks</h3>
<table id="tabledlist" class="tablesorter">
<thead>
<tr>
<th>Rank Title</th>
   <th>Minimum Hours</th>
<th>Rank Image</th>
</tr>
</thead>
<tbody>
<?php
foreach($ranks as $rank)
{
?>
<tr id="row<?php echo $rank->rankid;?>">
<td align="center"><?php echo $rank->rank; ?></td>
   <td align="center"><?php echo $rank->minhours; ?></td>
<td align="center"><img src="<?php echo $rank->rankimage; ?>" /></td>

</tr>
<?php
}
?>
</tbody>
</table>

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