Thanks Brad, I've changed things around now to this.
PHP Code:
// What Sword User has Now
$thread_sword = $bbuserinfo['sword'];
// All Items
$item_results = $DB_site->query_first("
SELECT id, swordname, money FROM swords
ORDER BY id DESC
");
while ($item = $DB_site->fetch_array($item_results))
$item['swordname'] = $item_results[swordname];
$item['money'] = intval ($item_results[money]);
$item['id'] = intval ($item_results[id]);
}
And now only the cost of the last item shows up. Nothing else.