$array = explode(" ", $words); // GEt each word in array
$in_stmt = "'".implode("','", $array)."'"; // create a string like 'stand','on','in'
MEJOR :
$in_stmt = "'".str_replace(" ", "','", $words)."'";
Declaración MySQL:
$stmt = "select something from sometable WHERE `word` IN (".$in_stmt.") GROUP BY (`p_id`) LIMIT 1000"