Iam using fulltext search in my php file using mysql.But its not giving any result for integers like "Timber Jane 10".
My requirement is to get exact search, that is, if I search a full name it should give exact matches which contains those words and in the order of best match in descending order no matter if the searched phrase is a three character word or an integer or a full name etc.
Query that I'm using is
select name,url from table where match (name) against ('+word*' IN BOOLEAN MODE)
Does Full text search stops searching when there's an integers in the searched string??? Please help!!