Re: [PHP] multilanguage site: performance question: included file with cases?

2003-09-19 Thread daniel hahler
on Wed, 17 Sep 2003 21:08:31 + Curt Zirzow wrote: I'm building up a site which should be german and english. So I have a site object which remembers this choice during the session and do a include('lang_'.$site-lang.'.php'); in my topmost.php. CZ I would suggest using gettext it will

[PHP] multilanguage site: performance question: included file with cases?

2003-09-17 Thread daniel hahler
Hello listmembers, I'm building up a site which should be german and english. So I have a site object which remembers this choice during the session and do a include('lang_'.$site-lang.'.php'); in my topmost.php. This works good, but this file is growing and I thought about how to handle

Re: [PHP] multilanguage site: performance question: included file with cases?

2003-09-17 Thread Curt Zirzow
* Thus wrote daniel hahler ([EMAIL PROTECTED]): Hello listmembers, I'm building up a site which should be german and english. So I have a site object which remembers this choice during the session and do a include('lang_'.$site-lang.'.php'); in my topmost.php. This works good, but