I want to find a word or a specific term in my table. How would I go to do this?
I get an error using the WHERE MATCH() AGAINST format because I use all the attributes of my tables.
This is an error:
$sql = "select * from plant_info WHERE MATCH (lighting,family,growth_rate,difficulty,genus,region,aqua_placement,plant_info) AGAINST ('".$search."')";
Are there any other ways for searching for a term in a table in a database?