Posted by Harris Kosmidis on 12/16/86 11:57
Hello.
I urgently need to develop a site with around 30-40 pages.
The site must be multilingual. Usually I use a top.php which generates a
lot of my structure. Then for every page I do:
include('top.php');
....page stuff...
include('footer.php');
in this case if I want to add a simple thing in my menu I only change it
in top.php. For the language part I inlcude a lang.php which is like this:
$lang["menuHome"]["en"]="Home";
$lang["menuHome"]["gr"]="Αρχική";
and so on. In my pages I only put print $lang["menuHome"][$l] where $l
is "en" or "gr" (http://.../page.php?l=en)
The site I must develop must be in php for the web but the customer
asked to have it on a CD-ROM, which of course should be simple html.
Is there a tool to convert my site in simple html?
thanks a lot
Navigation:
[Reply to this message]
|