I am creating a USSD application, with Portuguese language,when trying to display menu for example 1.Transferéncia 2.Serviços 3.Transacçõesit 4.Informações displays on the phone 1.Transfer?ncia 2Servi?os *proximo without displaying other menu items. Is there a way of encoding this to diplay all the menu with as it is.
I have used this to change values received from the xml
$find = array('ê','ç','õ','ó','ã','á', 'é'); // en dash
$repl = array( 'é','ç' , 'õ', 'ó', 'ã', 'á', 'é');
$main = str_replace($find, $repl, $main);
$main = iconv('UTF-8', 'ISO-8859-1//TRANSLIT//IGNORE', $main);