lets say you have the query:
'how do I play baseball?'
I am assuming you are breaking out each word and building a separate LIKE clause for each, but here's what I would do (untested)
$strQuery = 'how do I play baseball?'
$strQuery = preg_replace("/\S{1,3}/i", "", $strQuery);
then do explode() or split() on the delimiters (i.e. whitespace, etc..)
p.