I am implimenting language module using ini file. So i am inserting lable and its value into ini file but the values are inserting like ??? ????? in arabic language.
i have added
//in header section
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
//in php section
ini_set('default_charset','utf-8');
header("Content-Type: text/html; charset=UTF-8");
and also i have add the below line while making string for ini file
utf8_encode($elem);
I want to add and also update the already added ini values. please tell me how to do everything.
Thanks in advance.