Logician |
07-25-2002 02:18 PM |
Quote:
Originally posted by ripman
but there's a problem - i'm using iuso-8559-2 with polish chars and that causes problems in output .txt file (polish characters are printed badly)
|
Weird.. I also use a non-english ISO in my own board but I dont have any problems with non-english chars. Unfortunately I cant provide you with a solution for this but just give this a chance:
edit hack code, find:
PHP Code:
header("Content-disposition: attachment;filename=".$filename.".txt");
After that add:
PHP Code:
header("CHARSET=ISO-8559-2");
Actually this header is not for attachments, so I dont think it will work, but your wont lose anything by trying anyway..
|