Quote:
Originally Posted by Xoxideforums
I still haven't taken time to actually write up some PHP that checks to see if that user actually haves a garage setup. So right now every member has this image link to an imaginary or real garage.
Code:
<a href="vbgarage.php?do=view&id=$post[userid]"><img class="inlineimg" src="$stylevar[imgdir_statusicon]/garage.gif" border="0" alt="vBGarage Page" /></a>
Here's how to get them to list in order
Code:
if (!isset($pagenumber) or ($pagenumber < 1) or ($pagenumber > $numberpages))
$pagenumber = 1;
$pos = ($pagenumber - 1) * $perpage;
$result_list = $vbulletin->db->query_read("SELECT * FROM " . TABLE_PREFIX . "vbgarage_users ORDER BY lastactivity DESC LIMIT $pos,$perpage");
|
Thanks.....where do you put the code to list them in order?
- Justin