View Single Post
  #9  
Old 11th November 2008, 23:56
djlee's Avatar
djlee djlee is offline
Senior Member
 
Join Date: Mar 2008
Posts: 183
Default
well then change it back to entities .. specialchars will only encode "special" characters like ampersand and quotes whereas entities will encode EVERYTHING. entities is useful for sending characters to the browser in an entity form rather than byte code. generally this is only ever needed when you set the wrong charset in the header of the page or in the database.

so as a quick fix just change it back to entities ... if you want to try and leave it as specialchars then make sure that the database collation including all fields and tables allow the charset of your language (i.e. latin_swedish_ci or wateva it is) and ofcourse make sure the charset required is set in the head tags of the page in the stdhead() function
Reply With Quote