Re: [PHP] internationalization of web site

2006-04-13 Thread kmh496
i put the files in one place for you. to do what you want. http://www.sirfsup.com/code/php/i18n_php/http_server_encoding 2006-04-12 (수), 16:24 -0300, Martin Alterisio El Hombre Gris 쓰시길: Ussually, the browsers send a header with information about the language preferences of the user. This

Re: [PHP] internationalization of web site

2006-04-12 Thread Martin Alterisio \El Hombre Gris\
Ussually, the browsers send a header with information about the language preferences of the user. This header is HTTP_ACCEPT_LANGUAGE. You can retrieve its value in PHP through the array $_SERVER: $_SERVER['HTTP_ACCEPT_LANGUAGE'] Here you can find about the format of this header:

[PHP] internationalization of web site

2006-04-11 Thread Alain Roger
Hi, Sorry to send this email on both mailing lists but as i suppose that both are concerned by it, i did. i would like to make my web site tune to user language. for that i was thinking to create some XML files where all words can be found and based on the icon (country flag) that user clicked,

Re: [PHP] internationalization of web site

2006-04-11 Thread Richard Lynch
On Tue, April 11, 2006 1:59 pm, Alain Roger wrote: Sorry to send this email on both mailing lists but as i suppose that both are concerned by it, i did. i would like to make my web site tune to user language. for that i was thinking to create some XML files where all words can be found and

Re: [PHP] internationalization of web site

2006-04-11 Thread tedd
At 8:59 PM +0200 4/11/06, Alain Roger wrote: i would like to make my web site tune to user language. for that i was thinking to create some XML files where all words can be found and based on the icon (country flag) that user clicked, i will load a specific XML file to tune my PHP pages. Why