http://dev.mysql.com/doc/refman/5.0/en/fulltext-search.html
Review the link.
Did you setup your Index to account for using the "MATCH"?
The Fields in question must be 'FULTEXT' as shown below.
mysql> CREATE TABLE articles (
-> id INT UNSIGNED AUTO_INCREMENT NOT NULL PRIMARY KEY,
-> title VARCHAR(200),
-> body TEXT,
-> FULLTEXT (title,body)
And here is an example of using Match.
mysql> SELECT * FROM articles
-> WHERE MATCH (title,body) AGAINST ('database');
edit:
BTW- when it says MATCH(title,body) that means it's going to use those columns only to look for the MATCH. SO you will have add all the columns you need it to look in for the MATCH