I'm trying to get the relevancy to return from this fulltext search, but the variable "score" returns zero every time. The results appear and there are not any errors. I used phpmyadmin and setup and fulltext on the column "short_desc" using an alter statement. I am using the newest version of xammp, which uses Apache/2.0.53 (Win32) and PHP version 5.0.4. Here is the code, which I've reduced to the basics:
SELECT title, short_desc, MATCH(short_desc) AGAINST(\"$search\") AS score
FROM listings
Any help finding the solution so the relevancy is returned would be appreciated. thank you.