Hi.
What error are you getting?
The MATCH AGAINST syntax is used with
full-text searches. Is your table indexed for such a search?
If not, try using the WHERE LIKE syntax.. somewhat like:
Code: ( text )
SELECT columns FROM myTable
WHERE
column1 LIKE '%keyword%' OR
column2 LIKE '%keyword%' OR
column3 LIKE '%keyword%'
/* etc... */
P.S.
I would avoid using the wildcard char (*) in the SELECT query, like you do.
It will in 99% of cases return a lot more data than needed, which causes extra overhead on the server.
Specify only the columns you need instead.