CodeIgniter : Load different view for mobile devices
Codeigniter(PHP framework) supports the detection of client devices(user agents). In this tutorial, we will see how to use Codeigniter User agent class to detect the devices and present different views.
The following code demonstrate the capability in the simplest form
function different_views () {
$this->load->library('user_agent');
if (!$this->agent->is_mobile()) {
$this->load->view('desktop_view');
}
elseif ($this->agent->is_mobile('ipad')) {
$this->load->view('ipad_view');
}
else {
$this->load->view('mobile_view');
}
}
You can view all the user_agents that CodeIgniter recognizes in the file application/config/user_agents.php
Bear in mind that it is case sensitive. The word iPad
will produce different result from the word ipad
Reference:
By Adam Ng
IF you gain some knowledge or the information here solved your programming problem. Please consider donating to the less fortunate or some charities that you like. Apart from donation, planting trees, volunteering or reducing your carbon footprint will be great too.
Advertisement
Tutorials
+15k Golang : Get query string value on a POST request
+9.1k Golang : How to get garbage collection data?
+17.3k Golang : [json: cannot unmarshal object into Go value of type]
+7.6k Golang : Trim everything onward after a word
+6.9k Golang : A simple forex opportunities scanner
+29.2k Golang : Login(Authenticate) with Facebook example
+27.4k PHP : Count number of JSON items/objects
+25.8k Mac/Linux and Golang : Fix bind: address already in use error
+9.4k Golang : How to generate Code 39 barcode?
+15k Golang : Accurate and reliable decimal calculations
+9.2k Golang : Find the length of big.Int variable example
+12.7k Python : Convert IPv6 address to decimal and back to IPv6