You should be fine so long as your sql statement is properly constructed with addslashes() and 's around input things.
So your SQL statement in PHP should be something like:
$sql = "select * from table where title like '%".addslashes($searchterm)."%'";
A ? shouldn't mess it up. If it does, theres a problem somewhere, and you'll need to post some code here for us to help.