<?php
if (getenv("HTTP_ACCEPT_LANGUAGE") == "tr") { header("Location:index.php?language=turkce");}
elseif (getenv("HTTP_ACCEPT_LANGUAGE") == "de") { header("Location:index.php?language=german");}
else { header("Location:index.php?language=english"); }
?>