I'm trying to get a list of related articles. Example
$title = $fetch_content[article_name]; // example out put "Hello World, Ask A Question"
$rel_title = "Select * from tbl_content WHERE status='t' and article_name like '%$title' order by id desc limit 5";
How to separate the "Hello World, Ask A Question" into single keywords.