Tato123 Posted July 15, 2011 Report Posted July 15, 2011 Hi, i need help This is my code for Fleet Table <h1><?php echo SITE_NAME?>'s Fleet Information</h1> <table> <!-- Fleet Table Version 1.1 - fleet_table.tpl --> <table border="1"> <thead> <tr> <td><b>Image</b></td> <td><b>Type</b></td> <td><b>Range</b></td> <td><b>Empty Weight</b></td> <td><b>Cruise Alt</b></td> <td><b>Max Pax</b></td> <td><b>Max Cargo</b></td> <td><b>Total Hours</b></td> <td><b>Total Routes Flown</b></td> <td><b>Location</b></td> </tr> </thead> <tbody> <?php foreach ($fleet as $aircraft) { ?> <tr> <td><?php echo $aircraft->imagelink; ?></td> <td><?php echo $aircraft->name; ?> </td> <td><?php echo $aircraft->range; ?> </td> <td><?php echo $aircraft->weight; ?></td> <td><?php echo $aircraft->cruise; ?></td> <td><?php echo $aircraft->maxpax; ?></td> <td><?php echo $aircraft->maxcargo; ?></td> <td><?php echo $aircraft->totaltime; ?></td> <td><?php echo $aircraft->routesflown; ?></td> <?php $params = (array('a.registration'=>$aircraft->registration, 'p.accepted'=>PIREP_ACCEPTED)); $pirep = PIREPData::findPIREPS($params); $current_location = $pirep[0]->arricao; $current_location2 = $pirep[0]->arrname; ?> <td><?php echo $current_location.'-'.$current_location2; ?></td> </tr> <?php } ?> </tbody> </table> <p><small><a href="http://forum.phpvms.net/index.php?topic=1665.0">FleetTable 1.1</a></small></p> In the line <td><?php echo $aircraft->imagelink; ?></td> I need see the image and not the link. Is possible this? Thanks Quote
stuartpb Posted July 15, 2011 Report Posted July 15, 2011 Hi, i need help This is my code for Fleet Table <h1><?php echo SITE_NAME?>'s Fleet Information</h1> <table> <!-- Fleet Table Version 1.1 - fleet_table.tpl --> <table border="1"> <thead> <tr> <td><b>Image</b></td> <td><b>Type</b></td> <td><b>Range</b></td> <td><b>Empty Weight</b></td> <td><b>Cruise Alt</b></td> <td><b>Max Pax</b></td> <td><b>Max Cargo</b></td> <td><b>Total Hours</b></td> <td><b>Total Routes Flown</b></td> <td><b>Location</b></td> </tr> </thead> <tbody> <?php foreach ($fleet as $aircraft) { ?> <tr> <td><?php echo $aircraft->imagelink; ?></td> <td><?php echo $aircraft->name; ?> </td> <td><?php echo $aircraft->range; ?> </td> <td><?php echo $aircraft->weight; ?></td> <td><?php echo $aircraft->cruise; ?></td> <td><?php echo $aircraft->maxpax; ?></td> <td><?php echo $aircraft->maxcargo; ?></td> <td><?php echo $aircraft->totaltime; ?></td> <td><?php echo $aircraft->routesflown; ?></td> <?php $params = (array('a.registration'=>$aircraft->registration, 'p.accepted'=>PIREP_ACCEPTED)); $pirep = PIREPData::findPIREPS($params); $current_location = $pirep[0]->arricao; $current_location2 = $pirep[0]->arrname; ?> <td><?php echo $current_location.'-'.$current_location2; ?></td> </tr> <?php } ?> </tbody> </table> <p><small><a href="http://forum.phpvms.net/index.php?topic=1665.0">FleetTable 1.1</a></small></p> In the line <td><?php echo $aircraft->imagelink; ?></td> I need see the image and not the link. Is possible this? Thanks Yes: <td><img src="<?php echo $aircraft->imagelink; ?>"/></td> You need to make sure the image links are full, valid HTML URLs pointing to the images. 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.