STARs Posted June 26, 2012 Report Posted June 26, 2012 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> Quote
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.