Well, this code is moreless the same as:
PHP Code:
$thread_sword = $DB_site->query_first("SELECT sword FROM user WHERE userid='$bbuserinfo[userid]'");
$result = $DB_site->query("SELECT id, swordname, money FROM swords ORDER BY id ASC");
while ($item = $DB_site->fetch_array($result))
{
// Do nothing
}
Furthermore, your code does not support table prefixes:
PHP Code:
$thread_sword = $DB_site->query_first("SELECT sword FROM " . TABLE_PREFIX . "user WHERE userid='$bbuserinfo[userid]'");
$result = $DB_site->query("SELECT id, swordname, money FROM " . TABLE_PREFIX . "swords ORDER BY id ASC");
while ($item = $DB_site->fetch_array($result))
{
$sword = $item[swordname];
$money = $item[money];
$id = $item[id];
}
]