Actually I have some amount of data stored in mysql database from my website users. Next I want to export this data for user in excel file and i can export data to excel perfectly, But the problem is with unicode content in mysql database, When i am trying to export unicode content into EXCEL it shows like:
की इतने लिटर पानी के बाद आप कà¥
I am using headers to export, code is below:
header("Content-Type: application/xls");
header("Content-Disposition: attachment; filename=$filename.xls");
header("Pragma: no-cache");
header("Expires: 0");
Please help me out to Export unicode content in excel file. Thanks in Advance.