Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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: å&#260;&#262;&#280;&#321;&#323;Ó&#346;&#377;&#379;&#261;&#263;&#281;&#322;&#324;ó&#347;&#378;&#380;

I need polish character to be displayed there.

Can anyone help me in order to solve this?

Thank you

share|improve this question
Try with echo("") instead of echo('') – Praveen Kumar Sep 18 '12 at 6:34
Even double quotes is not working dude.... – Iam4fun Sep 18 '12 at 6:36
Do one thing: Try this: header('Content-Type: text/plain; charset=UTF-8'); – Praveen Kumar Sep 18 '12 at 6:40
Your code works fine: Output [in view with Editor] is åĄĆĘŁŃÓŚŹŻąćęłńóśźż: How did you open the output? – donald123 Sep 18 '12 at 6:42
I used your header dude but it is not working too.... – Iam4fun Sep 18 '12 at 6:42
show 2 more comments

1 Answer

up vote 0 down vote accepted

Try this:

<?php

header('Content-type: application/ms-excel');
header('Content-Disposition: attachment; filename=reports.csv');

$data = 'åĄĆĘŁŃÓŚŹŻąćęłńóśźż';

$csv_output = '="'.$data.'"'.chr(9).chr(13);

$csv_output = chr(255).chr(254).mb_convert_encoding($csv_output, 'UTF-16LE', 'UTF-8');

echo $csv_output;

?>

Also do not forget to save your php file as UTF-8 without BOM ...

chr(9) seprates fields and chr(13) separates rows ...

share|improve this answer
i have used your code but it is not working friend.... – Iam4fun Sep 18 '12 at 6:56
="å&#260;&#262;&#280;&#321;&#323;Ó&#346;&#377;&#379;&#261;&#263;&#281;&#322;&#32‌​4;ó&#347;&#378;&#380;" – Iam4fun Sep 18 '12 at 6:57
OK, I updated the answer again, it should work now 100% ... Test the new code again ... – Night2 Sep 18 '12 at 6:59
Again i am getting the above output only friend.It is not working... – Iam4fun Sep 18 '12 at 7:02
Are you sure that you have added my code update? $csv_output = chr(255).chr(254).mb_convert_encoding($csv_output, 'UTF-16LE', 'UTF-8'); should be in your code, here is a file I created exactly with same code and it is working for me in my Excel 2010: encodable.com/uploaddemo/files/reports.csv – Night2 Sep 18 '12 at 7:17
show 2 more comments

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.