Anyone know of any function to replace letters with accents with just the regular letter, for instance replace � with a,
� with c, � with n ?
$string = str_replace(array('�', '�', '�'), array('a', 'c', 'n'), $string);
-- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

