Can anyone help me, I am trying to do a keyword search of a table I have.
Basically I want to search the title, description and location fields of the job table against a string to be passed from a form. At the moment I have just hard coded the string.
When I try and run the SQL statement:
$sql = "SELECT *, MATCH (title, description, location) AGAINST ('web designer') FROM job";
I get the following error:
Can't find FULLTEXT index matching the column list
Does anyone have any ideas????