What extensions would you recommend and how should php be best configured to create a website that uses utf-8 encoding for everything. eg...
- Page output is utf-8
- forms submit data encoded in utf-8
- internal processing of string data (eg when talking to a database) are all in utf-8 as well.
It seems that php does not really cope well with multibyte character sets at the moment. So far I have worked out that mbstring looks like an important extension.
Is it worth the hassle..?