Dear Sir,
I am facing a problem with exporting data . when i exported data the arabic characters comes with a invalid character set . i used utf8 encoding systeme in both of php files. so can any one tell me how can i keep the arabic text in a .csv xcel file after exporting? please reply.
Regards,
Faruk Chowdhury.
[code]
eader("Content-Disposition: attachment; filename=\"$fil e_name\"");
header("Cache-Control: cache, must-revalidate");
header("Pragma: public");
header('Content-Type: text/xml, charset=UTF-8; encoding=UTF-8');
$t ="س";
echo $t;
output: س.
I am facing a problem with exporting data . when i exported data the arabic characters comes with a invalid character set . i used utf8 encoding systeme in both of php files. so can any one tell me how can i keep the arabic text in a .csv xcel file after exporting? please reply.
Regards,
Faruk Chowdhury.
[code]
eader("Content-Disposition: attachment; filename=\"$fil e_name\"");
header("Cache-Control: cache, must-revalidate");
header("Pragma: public");
header('Content-Type: text/xml, charset=UTF-8; encoding=UTF-8');
$t ="س";
echo $t;
output: س.
Comment