i've searched for similar question that is answered and helps me but i cannot find. So, my question is, how to write the mysql query to pull the sentence from DB, which contains a keywords generated from another sentence, like this:
$tyrsena = "php statement for clause";
$ques = "SELECT * FROM question WHERE title IN '$tyrsena'";
$re = mysql_query($ques)or die(mysql_error());
while ($da = mysql_fetch_assoc($re)){
$sugg = $da['title'];
echo $sugg;
}
So $tyrsena is the sentence from which I need to generate the keywords, and i want to match the titles from question table which match to those keywords.
The code that i'm presenting is not working, its matching the sentece only if its 100% same, i'm giving it just to imagine what i want to achieve. Thank you guys :)