I have this simple database driven website and it has tables such as this,
article
table,
id title url content
1 Hello hello bla bla bla
this table keeps the English version's data only.
but now I need to create a French version for my website, what should I do with my tables for storing French version's data?
Do I have to duplicate the tables such as article
table for storing French data?
Any suggestions in handling database for making a multi-languages website?