Quote:
Originally Posted by White Knight
Extra Query doesnt bother me.. heck im all about killing the CPU :P if it was on forumhome or something i would have to think twice 
|
Ask and ye shall recieve:
In
vbgarage.php:
FIND:
PHP Code:
while ($latest = $DB_site->fetch_Array($result_latest))
{
Add BELOW:
PHP Code:
$result_data = $DB_site->query("
SELECT year,make,model FROM " . TABLE_PREFIX . "vbgarage_users WHERE userid = $latest[userid]
");
$data = $DB_site->fetch_Array($result_data);
Now, you should be able to return [high]$data[year][/high], [high]$data[make][/high], [high]$data[model][/high] in
vbgarage_latestbits.
Let me know if you have any problems.