My DB needs to hold strings containing foreign language characters. As an example, a user enters string into form, the form is submitted and the string is added to DB. The string will be displayed on a web page. I would like to use UTF-8 as this will be able to handle all of the required languages.
Currently, I believe my DB is set to 'latin1', but webpages are capable of displaying correct characters anyways. Problems arise when trying to set textareas to hold foreign characters and when viewing DB via command-line.
How can I implement this effectively? My plan was to blitz the whole site such that the DB charset is UTF-8, and the web page charset is UTF-8. Could someone give me the minimal commands on how to do this so I don't end up duplicating things (Having "UTF-8" commands everywhere when I really just need one) and making things too difficult to control?
edit: Using MySQL, PHP and JavaScript/HTML