I want to search strings using wildcards, much like mysql does using "LIKE" and using % for the wildcards.
String = ThisIsAString
Search: %This%A%
MYSQL Equivalent:
mysql_query("SELECT * FROM table WHERE String LIKE '%This%A%'");
Thanks alot, I hope this is enough information to get my question out.