Anyone know how to combine PHP prepared statements with LIKE? i.e.
\"SELECT * FROM table WHERE name LIKE %?%\";
You could try something like this:
"SELECT * FROM table WHERE name LIKE CONCAT(CONCAT('%',?),'%')"