Both recordsets pull from table "users" and is in a loop
<? if ($row_users['username'] == $row_team_leads['username']) { echo ?>
Now, the loop works for grabbing each $row_users['username'], but it obviously only grabs the first $row_team_leads['username'] to do the comparison. How do I make an internal loop to compare each $row_users['username'] against ALL $row_team_leads['username'] ?
I get:
user1 == team_lead1
user2 == team_lead1
user3 == team_lead1
user4 == team_lead1
user5 == team_lead1