PHP Code:
// assuming the list is in $user['ignorelist']...
$ignorelist = explode(" ", $user['ignorelist']);
$usernames = array();
if (!empty($user['ignorelist']))
{
$result = $DB_site->query("SELECT userid, username FROM user WHERE userid IN (" . implode(", ", $ignorelist) . ")");
while ($bits = $DB_site->fetch_array($result)
{
$usernames[$bits[userid]] = $bits['username'];
}
}
Then $usernames[
userid will equal that userid's username.