You all were are so good I thought I'd test you again.

I want, when I insert data into a table to relate to to the others via a master id. In my code for submitting a certain piece of information I try to refer to the id from another table.
Here's the error I get:
Impossible to find an index FULLTEXT corresponding to this list of columns
Here's the code snippet:
//get master id
$add_master = "select id from client_name where match (company) against ('$_POST[add_work_order_client]')";
$master_id = mysql_query($add_master) or die (mysql_error());
Hope this makes sense!
