I'm building a full text search but would like the search term ($id) to search more than on table... can you please help
$query = "SELECT * FROM titles, artists WHERE artists.id = titles.artist_id AND MATCH(artists.artist, titles.title, titles.content) AGAINST ('$id')";
I get the following error (the query work if I search only one table i.e. titles)
Error in query: SELECT * FROM titles, artists WHERE artists.id = titles.artist_id AND MATCH(artists.artist, titles.title, titles.content) AGAINST ('music'). Wrong arguments to MATCH