Guys , i am unclear about this particular problem and would appreciate some insight.
I have installed apache many times to host english based websites ( static html and dynamic php pages). But now for some of these sites, i would like to add some Chinese / Mandarin pages?
So what do i need to do to apache / php on the server side?
Anything special do i need to do for the the client side browser? I assume they need a browser with that language pack? But if i have firefox-english, will that be lost if i install firefox-chinese ?
Sorry if these questions are amatuerish…i have no experience in this area?
All your data sources (static HTML files and databases) must be UTF-8 capable.
If you do any text processing, e.g. regular expression matching, in PHP or other scripting language, take into account UTF-8 characters.
Apache needs no configuring, it can all be done in the scripting language, e.g. PHP. As long as the client gets the correct charset encoding of UTF-8, it’s up to them to render the pages correctly. They may require additional font packages, but this is not your concern.
[/FONT]in mysql, for collation i have;[FONT=monospace]
[/FONT]utf8_unicode_ci
in php ( via phpinfo) i have;
So therefore i just have to ask the users to get a browser with chinese font support? nothing more ? no need to edit httpd.conf or .htaccess?
charset utf8