Jump to content

polish characters


jkkenzie

Recommended Posts

Nope. No need to stick with archaic non-standards. UTF8 works fine for Polish as long as you make sure everything from database to final output uses it.

 

oh, okay. So this dude has to write all the special characters in html code?  :-\

(http://webdesign.about.com/library/bl_htmlcodes.htm)

Link to comment
https://forums.phpfreaks.com/topic/190103-polish-characters/#findComment-1003120
Share on other sites

:'( I used UTF 8 and the Charset ISO but work only my local computer.

I had to go online and get the encoding for characters like &#380 and the like.

But not many characters though :(

 

If you get the replacement character (IE � ) then try running utf8_encode along with the UTF8 encoding headers.

 

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

echo utf8_encode($message);

 

And it will work (theorietically) no matter what, as long as you define UTF-8 in the meta tags.

Link to comment
https://forums.phpfreaks.com/topic/190103-polish-characters/#findComment-1003492
Share on other sites

Make sure the document is saved in UTF-8 encoding. If you are using Dreamweaver, it will tell you the current encoding of the document on the bottom right of the code pane. I can't speak for other editors. But the document itself has to be UTF-8 for non-English characters to display properly.

Link to comment
https://forums.phpfreaks.com/topic/190103-polish-characters/#findComment-1003735
Share on other sites

Make sure the document is saved in UTF-8 encoding. If you are using Dreamweaver, it will tell you the current encoding of the document on the bottom right of the code pane. I can't speak for other editors. But the document itself has to be UTF-8 for non-English characters to display properly.

 

Also note to not include the BOM (byte order mark) if the option is there, as it could cause incompatabilities with the script. (IE count as whitespace before <?php for headers)

Link to comment
https://forums.phpfreaks.com/topic/190103-polish-characters/#findComment-1003768
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.