i am not able to get correct browser name using user_agent function
i tried the following code and did not get perfect output.
//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
i also added the name name of browser in the user_agents.php in browser but that is not working please help
Screenshot from 2017-10-22 23-43-35.png (Size: 83.43 KB / Downloads: 0)
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
Screenshot from 2017-10-22 23-43-35.png (Size: 83.43 KB / Downloads: 0)