Anyone know about PHP multilanguage website concept? I want to try to develop a website which has multi language feature. I want it can be in 2 or more languages and the contents can be added freely under specific language chosen. Any links or tutorials would be nice... Thanks in advance.
the concept is simple To get the language you can do by using $_GET or $_SESSION params To build the lang you simply do with an array or keep translations into db for more check http://www.tutorialized.com/view/tutorial/Multi-Language-System/12488
I was going to recommend that as well! Its a great framework and has built in support for handling multiple languages. If you don't' want to take the route of a framework, I'd keep a database of all your textual content, keep a column for the language_id, and a separate table of languages, and store the chosen language in a cookie.
@gapz101 and crivion thanks to the reference link @renownedmedia thanks too. so far in my mind, i have been thinking about adding language id field into tables that contain textual content as you suggest, i hope i'm on the right track.. that's awesome pals.. thanks