Well I'm trying to run a mysql query and a where the field contains the text. like: mysql_query("SELECT * FROM users WHERE username contains ';;' "); PHP: This is not real but I want to know what is equivalent to this.
select * from users where username like '%content%' The percent signs indicate "is somewhere sloshed in there". That's a technical term by the way.