How can I find an highlight a string in a foreach?
This loops through all users of my database and I want to find all lets say $um.
$um = "Um";
foreach($users as $user){
# find here the string um or something
echo $user;
}
How do I accomplish this?