I am working on a project based on codeigniter. I can set languages by this
$this->lang->load('file', 'french');
$this->lang->load('file', 'german');
Now my question is how can I detect which language file to load? For example if I will load language after detecting ip or browser and if user from england went to france and opening website from a cafe then he will see website in french language..
How can I achive this? Is anyone have idea?