Possible Duplicate:
PHP: Dealing special characters with iconv
I am currently using the following piece of code to translate special characters like é to e. But at the moment the output is as follows.
Player Before: Touré Y.
Player After: TourA� Y.
$normalizeChars = array( 'é'=>'e' );
$player = $event->player;
echo "Player Before: $player<br />";
$playerafter = strtr($player, $normalizeChars);
echo "Player After: $playerafter";