Im a tring to check if a string has any characters like "á" change them to "a" or é to e, or ñ to n.
forexample: $word = hélló
I want to change it to: $word = hello
how can I do that?
check out the str_replace function
http://www.php.net/manual/en/function.str-replace.php
strtr() called with an array as 2nd argument might be useful as well: http://www.php.net/manual/en/function.strtr.php