zamilie
Posts: 5
|
| Posted: 10/24/2007, 8:47 PM |
|
Dear All,
Anyone can help me here. I am newbie here.
I trying to create admin page. Trying to enter Data in Chinese Char but the output is "?????" in the database. what should i do?
anyone can guide me here.
Thanks in advance.
info :
Database : MySQL
Codecharge : 3.2.0.4
Language : asp 3.0
|
 |
 |
ccbblin
Posts: 1
|
| Posted: 10/25/2007, 1:00 AM |
|
Make sure your mysql database is set to UTF8
I just post my mysql sql file setting.
CREATE TABLE `countries` (
`country_id` int(11) NOT NULL auto_increment,
`country_name` varchar(255) collate utf8_unicode_ci default NULL,
PRIMARY KEY (`country_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=1 ;
Fianlly, Your Codecharge Studio Project may be set to UTF8
|
 |
 |
|