I am getting there. Now have a working search as long as I
manually type the keywords into the SQL
I am having no luck getting a search box either on the same
page or seperately to work. My text field is called 'searchtest'
using 'GET' my code from the recordset is shown below.
SELECT artistinfotbl.artistName, artistinfotbl.lastName,
MATCH (artistinfotbl.artistName, artistinfotbl.lastName) AGAINST
('$searchtest' IN BOOLEAN MODE) AS score
FROM artistinfotbl
WHERE MATCH (artistinfotbl.artistName,
artistinfotbl.lastName) AGAINST ('$searchtest' IN BOOLEAN MODE)
ORDER BY score DESC
It's driving me to drink please can anyone help
Thanks
John