how do I narrow down mysql search results?
I want to create a mysql search (MATCH x AGAINST y) where it will only show the results where the complete term of 'x' is found in 'y'.
for example, in database 'x' I have two entries: 1) 'good forum' and 2) 'bad forum'.
When the input of 'y' is "dreamweaver has a good forum", I only want the first entry of x to show ('good forum').
However, using WHERE MATCH x AGAINST y always displays both 1 and 2 of database 'x' because they both have the word 'forum'. How do I arrange the search result code to only get the the entry of 'x' that fully matches that of 'y'?
Thank you,
YWSW
