Jump to content

Recommended Posts

Ho guys,

 

I am running the following:

mysql_query("ALTER TABLE reviews ADD FULLTEXT (title)") or die(mysql_error());
mysql_query("ALTER TABLE reviews ADD FULLTEXT (body)") or die(mysql_error());
$result = mysql_query("SELECT movieId, title, MATCH (title, body) AGAINST ('" .$row['title']. "') FROM reviews WHERE MATCH (title, body) AGAINST ('" .$row['title']. "')") or die(mysql_error());

 

but I keep getting the error "Can't find FULLTEXT index matching the column list". Is my syntax right on the first two lines?

 

This is going to be used to gather related articles based on the currect articles title and echoed as such.

 

Thanks

 

SC

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.