Unclear - Website running off Apache with Chinese Fonts

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?

Send out pages in UTF-8 encoding.

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.

ken,

in my static html pages i have set ;

 [FONT=monospace]<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />

[/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

ken,

in my static html pages i have set ;

    [FONT=monospace]<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />

[/FONT]in mysql, for collation i have;[FONT=monospace]

  [/FONT]utf8_unicode_ci 

in php ( via phpinfo) i have;

charset utf8

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?

Why don’t you try it out? My browser out of the box displays Chinese characters just fine.

BTW, this is in the wrong forum, sloppy of you. This has nothing at all to do with 64-bit. If any mod is reading this, please move the thread.

will do. thanx a lot.

regards,
marco.

p.s. i am running 64bit OpenSuse 11.3

It’s got absolutely nothing to do with the word width of your CPU.

ok. understood.