How to create multi language main menu in html/php script now i have
{t t=\"Let
My Approach would be to do the following:
Step 1: Setup a folder tree structure like this:
Languages
-en
-lang.en.php
-fr
-lang.fr.php
-de
-lang.de.php
keep making new folders with all the other languages you want to support
Step 2: Create our language files, i will start with languages/en/lang.en.php
you would repeat this for every other language, ill do fr for example languages/fr/lang.fr.php
. NOTE how the labels stay the same in english
Step 3: Check if the user has requested a language change, via a url variable
Step 4: you can access your language parts like so and it would change based on what language file is loaded.
hope this helps get you started as an idea