When i try to insert polish character in Csv file .The polish character automatically turned to their respective htmlentities
<?php
header('Content-Type: text/csv; charset=UTF-8');
header( 'Content-Disposition: attachment;filename=reports.csv');
echo ('åĄĆĘŁŃÓŚŹŻąćęłńóśźż');
?>
Output: åĄĆĘŁŃÓŚŹŻąćęłńóśźż
I need polish character to be displayed there.
Can anyone help me in order to solve this?
Thank you
echo("")instead ofecho('')– Praveen Kumar Sep 18 '12 at 6:34header('Content-Type: text/plain; charset=UTF-8');– Praveen Kumar Sep 18 '12 at 6:40