";
}
//$ns -> tablerender(US_LAN_4, $text);
echo $text;
echo "\n\n";
}
function findusers($s,$banned=FALSE) {
global $sql, $tp;
$inc = ($banned == FALSE) ? " AND user_ban != 1" : "";
if ($sql->db_Select("user", "*", "user_name LIKE '%".$tp -> toDB($s)."%'".$inc))
{
while ($row = $sql -> db_Fetch()) {
$ret[strtolower($row['user_name'])] = $row['user_name'];
}
ksort($ret);
} else {
$ret = FALSE;
}
return $ret;
}
}