Hi
I have a client that wants to store data in a MySQL database with multiple languages (English, French etc) and be able to retrieve the data (in the same specified language). ie: we have an English description of a product (varchar), which we intend to rewrite in French, and then on the server side find the description in the locale that we require.
I thought of wrapping the data in XML with language tags and then parsing the data?
What is the best way to cater for multiple languages from a user data perspective? Is there a framework out there?
J