Hy! I want to create a multilingual website where the language settings of the browser are checked and based on that I want to derive the text for the page from a database! Can somebody tell me how to check the language of the users browser, or give me a literature hint about that! Thanks a lot for help!
Thanks for reply! For some reasons I do not want to use Java Skript! I have tried the following, but it does not work out: <?php $language = $_SERVER["HTTP_ACCEPT_LANGUAGE"]; if($language == 'en'){ echo 'english'; } else if ($language == 'de') { echo 'deutsch'; } else { echo 'damn'; } ?>