Quote:
Originally Posted by appsfinder
 hi is there any way to show thumbnail of actions in your mod thanks
eg what code do i need?
|
In vba_vBay.php, replace the existing query with the following:
Code:
$showvbay = $db->query("
SELECT items.id, items.name, items.price, items.completetime, items.bids, items.completed, images.id AS imageid
FROM " . TABLE_PREFIX . "vbay_items items LEFT JOIN " . TABLE_PREFIX . "vbay_images images
ON items.id = images.auctionid WHERE items.completed = 0
ORDER BY items.id DESC LIMIT 5
");
In the template adv_portal_vbay_bit, add the following:
Code:
<if condition="$showvbays[imageid]<>''">
<br />
<img src='vbaytn.php?id={$showvbays[imageid]}' alt='$showvbays[name]' title='$showvbays[name]' width='100' align="center" />
</if>
You can see the result in action here:
http://www.entropiaplanets.com/forums/