I do a search in a database with full text
$ search = $ _GET ['q'];
$construct ="SELECT *, MATCH(cw,sw,,pforte) AGAINST('". $search ."' IN BOOLEAN MODE) AS tot FROM sitist WHERE MATCH(cw,sw,,pforte)
AGAINST ('". $search ."' IN BOOLEAN MODE) ORDER BY tot DESC LIMIT 0 , 30";
My problem is that:
If $ search = kijiji.com or google.com, .....
In boolean mode I delete point "." and as if
$ search = kijiji com or google com, .....
What I put do to search even point?
Regards,cristian