Posted by Harris Kosmidis on 11/10/93 11:57
Chameleon wrote:
> O/H Harris Kosmidis έγραψε:
>> 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
>
> You can install apache/php on your customer.
>
> or
>
Now I can't. The customer wants to give-out copies of its web site to
some people (don't ask me why)
> If your pages are static, you can save from browser to html (result of
> php).
>
But there will be 30-40 pages (x2 for two languages for the time being).
> or
>
> You can't do nothing
>
Navigation:
[Reply to this message]
|