17 Jan 2009 - notes
I noticed in the Forum someone appending -UTF8 to the $_SERVER['HTTP_ACCEPT_LANGUAGE']
Not sure if this works, or is advisable, need to research it's usage.
$opts['language'] = $_SERVER['HTTP_ACCEPT_LANGUAGE'] . '-UTF8';
-----
Users may need to apply utf8_encode() to values in language files which contain accented characters.
-----
If using UTF8, the class file and/or db connection needs to include
two additional queries:
mysql_query('SET NAMES UTF8');
mysql_query('SET COLLATION_CONNECTION=UTF8_GENERAL_CI');
If using UTF8, HTML files need to include 2 META tags: