Hi,
I'm writing a site supporting 4 languages (english, dutch, french and german). My problem is that setlocale() is ignored.
The following code should change the locale to dutch and then print the current locale.
<?
setlocale ("LC_ALL", "dutch");
print("current LC_ALL is ".setlocale ("LC_ALL", 0));
?>
(yes, dutch is in /usr/share/locale/locale.alias)
The output i get is:
current LC_ALL is C
I have this problem with several versions and configurations op apache+php.
I did all my tests on slackware boxes. Could Slackware be the problem? Or am I missing something here?
vanne