CodeIgniter Forums
User agent - Printable Version

+- CodeIgniter Forums (https://forum.codeigniter.com)
+-- Forum: Development (https://forum.codeigniter.com/forumdisplay.php?fid=6)
+--- Forum: Issues (https://forum.codeigniter.com/forumdisplay.php?fid=19)
+--- Thread: User agent (/showthread.php?tid=69228)



User agent - bossmukul - 10-22-2017

i am not able to get correct browser name using user_agent function

 i tried the following code and did not get perfect output.



Code:
$this->load->library('user_agent');
      if ($this->agent->is_browser())
      {
              $agent = $this->agent->browser().' '.$this->agent->version();
      }
      elseif ($this->agent->is_robot())
      {
              $agent = $this->agent->robot();
      }
      elseif ($this->agent->is_mobile())
      {
              $agent = $this->agent->mobile();
      }
      else
      {
              $agent = 'Unidentified User Agent';
      }
     
      echo $agent.'<bR>'.$this->input->ip_address();
      echo $this->agent->agent_string().'<br>';
      echo $this->agent->platform();


//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
i also added the name name of browser in the user_agents.php in browser but that is not working please help