Hi I am having charset problem at the moment, if i try: <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> some of the character which are in Tarkish language don't work and if i use <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> others don't work. I even tried: utf8_decode() utf8_encode() PHP: any help
This occurs when you have text with different encodings on your page. If the content comes from the database, it was saved there with the encoding it recieved. If it comes from a file, you need to open that file and save it in another encoding. I recommend utf-8. If it's from the database, you can try to use iconv to change the encoding, but you neet to know the original encoding in order to convert it