Im not sure I understood you correctly, but this will work for a search in a one column in one table.
SELECT * FROM table_name WHERE column_name like '%omni%'
If your using a string from a html form text field the $_GET variabel you have for that value can just be inserted into the search string, ie:
...like '%$variable%'