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
+21.5k Golang : How to reverse slice or array elements order
+10.2k Golang : Generate 403 Forbidden to protect a page or prevent indexing by search engine
+19.8k Golang : Check if os.Stdin input data is piped or from terminal
+9k Golang : How to check if a string with spaces in between is numeric?
+13.9k Elastic Search : Mapping date format and sort by date
+16.1k Golang : Convert slice to array
+47.2k Golang : Convert int to byte array([]byte)
+4.5k JavaScript: Add marker function on Google Map
+15k Golang : Get timezone offset from date or timestamp
+36.1k Golang : Convert(cast) int64 to string
+19.2k Golang : How to count the number of repeated characters in a string?