Okay, so I have a table called urls, with url_id, url_title, and url fields...
i created a fulltext index on teh url_title field, as I want to perform a search on this...
I use the following SQL statement
SELECT * FROM urls WHERE MATCH (url_title) AGAINST ('$search_string');
it returns no results, if $search_string = 'outlook', yet outlook is in contained within one of the url_title rows...
am i doing something wrong?