I have this sql query.
select something from sometable WHERE `word` IN ('stand','on','in') GROUP BY (`p_id`) LIMIT 1000
And I have a php variable ($words) which holds a sentence. How to pass that variable value into this IN clause?
ex: $words = "stand on in this here";