jsampsonPC wrote:
I want to first extract keywords from their text, search those against a database of articles...Any suggestions on how I should find the REAL keywords in these posts? Obviously I'll strip out 'a', 'and', 'of', etc...but I'm still a little in the dark on the full operation.
Where & how are you implementing this (platform, language)? How is the db set up? How large is the table?
Dependent upon its size, you may want to create the keyword list from the article db and then search through the comments.
if you want the user to do all the work, use javascript:
create an associative array of the keywords in javascript [ var keyList = {"Word1", "url4Word1", "title of Word1 article", "first phrase", "url4firstPhrase", "title of first phrase article",......} ]
split the user's comments into an array that you can then use to match against the keyList. If found, add the url to another array that you can display in a div, as a recommendation.