[eluser]Unknown[/eluser]
Hello, I'm currently trying to check if the user of my web page is using a mobile or is using a pc.
I'm trying doing this:
Code:
if ($this->agent->is_mobile()){
$this->views_prefix = 'mobile/';
}
else{
$this->views_prefix = 'default/';
}
$this->load->view($this->views_prefix.'default_page');
But when I enter to the page on my android or on my pc the page showed is default/default_page.
What is the problem?
(sorry bad english )