You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
$rows = $rDB->select('SELECT username, joindate, last_login FROM account WHERE username=?', $uquery);
foreach ($rows as $row)
{
$user['joined'] = $row['joindate'];
$user['llogin'] = $row['last_login'];
$user['profilename'] = $row['username'];
}
$user['reputation'] = $rDB->select('SELECT * FROM account_reputation WHERE username=? ORDER BY id', $uquery);
$user['id'] = $rDB->selectCell('SELECT id FROM account WHERE username=?',$uquery);
$user['characters'] = $cDB->select('SELECT name, level, guid, class, race, latency, online FROM characters WHERE account=?d ORDER BY guid', $user['id']);