I have a MySQL table which contains a list of users. I want to search for all users that have a certain rank, or rights. There are five levels, 0 to 4. When I search my user_rights column for 2 OR 3 OR 4 in PHP, it only returns one row, but when I use the same criteria in a MySQL search, it returns all of the results. Is there a simple solution?