Thanks,
that will work in a standard "like" search within mysql, but it doesn't seem to work when I use a REGEXP to compare the string at the database with the one typed.
This Regular expression make sure the search is being made for whole words only:
$query.= " c.keywords REGEXP '[[:<:]]".$vetor_busca[$i]."[[:>:]]'";
if I use
$vetor_busca[$i] = ereg_replace( '[áéíóú]', '_', $vetor_busca[$i] );
nothing will be found.
Does any one have a workaround for this problem?
Thanks in advance.
--regis