Because my code is ridiculously bulky and inefficient, I'll supply you with the two SQL statements I'm using to retrieve the data with.
<?
// retrieves workers associated to given bug issue
$sql_bugowners = "select * from bugandowner where bugownerid = '$id'";
$result_bugowners = mysql_query($sql_bugowners);
//retrieves full list of workers
$sql_workers = "select fname, lname from user order by lname, fname";
$result_workers = mysql_query($sql_workers);
?>
Array A will be the results from $sql_bugowners, Array B will be the results from $sql_workers. How to only show workers from Array B that don't appear in Array A