Inside this article we will see the concept i.e How To Use Limit and Offset in CodeIgniter 4 Query Tutorial. Article contains the classified information about Limiting Data Rows of CodeIgniter Query Builder or Model Based Queries.
If you are looking for a solution i.e How To get results using limit and offset in CodeIgniter then this article will help you a lot for this. Tutorial is super easy to understand and implement it in your code as well.
Read More: CodeIgniter 4 How To Get Domain Name From Subdomain
Let’s get started.
CodeIgniter 4 Installation
To create a CodeIgniter 4 setup run this given command into your shell or terminal. Please make sure composer should be installed.
$ composer create-project codeigniter4/appstarter codeigniter-4
Assuming you have successfully installed application into your local system.
Create Database
To create a database, either we can create via Manual tool of PhpMyadmin or by means of a mysql command.
We will use MySQL command to create database. Run this command into Sql tab of PhpMyAdmin.
CREATE DATABASE codeigniter4_app;
Successfully, we have created a database.
Database Connection
Open .env file from project root.
Search for DATABASE. You should see the connection environment variables into it. Put your updated details of database connection string values.
#-------------------------------------------------------------------- # DATABASE #-------------------------------------------------------------------- database.default.hostname = localhost database.default.database = codeigniter4_app database.default.username = admin database.default.password = admin database.default.DBDriver = MySQLi database.default.DBPrefix = database.default.port = 3306
Now, database successfully connected with the application.
Environment (.env) Setup
When we install CodeIgniter 4, we will have env file at root. To use the environment variables means using variables at global scope we need to do env to .env
Either we can do via renaming file as simple as that. Also we can do by terminal command.
Open project in terminal
$ cp env .env
Above command will create a copy of env file to .env file. Now we are ready to use environment variables.
Enable Development Mode
CodeIgniter starts up in production mode by default. You need to make it in development mode to see any error if you are working with application.
Open .env file from root.
# CI_ENVIRONMENT = production
// Do it to
CI_ENVIRONMENT = development
Now application is in development mode.
Limit & Offset in Query Builder Approach
To use Query Builder in CodeIgniter 4, you need to create database instance first and then work with your tables & queries.
Read More: How To Get Domain Name From Subdomain in PHP Tutorial
Database Instance
$this->db = db_connect();
Next,
Table Object
$builder = $this->db->table("posts");
Next,
Data Limit
Get total 10 records from table.
$builder->select('title, content, date');
$builder->limit(10);
$query = $builder->get();
$data = $query->getResult();
OR
$builder->select('title, content, date');
$query = $builder->get(10);
$data = $query->getResult();
Read More: CodeIgniter 4 How to Insert Multiple Records Example Tutorial
Data Limit & Offset
Get total 10 records starting from offset 20 of table.
$builder->select('title, content, date');
$builder->limit(10, 20);
$query = $builder->get();
$data = $query->getResult();
OR
$builder->select('title, content, date');
$query = $builder->get(10, 20);
$data = $query->getResult();
Limit & Offset in Model Based Query Approach
To use Model Based Query Builder Approach in CodeIgniter 4, you need to create model instance first and then work with your queries.
Model Instance
$postObject = new Post();
Next,
Data Limit
Get total 10 records from table.
$postObject->select('title, content, date');
$postObject->limit(10);
$query = $postObject->get();
$data = $query->getResult();
OR
$postObject->select('title, content, date');
$query = $postObject->get(10);
$data = $query->getResult();
Read More: Laravel 9 How to Insert Multiple Records Example Tutorial
Data Limit & Offset
Get total 10 records starting from offset 20 of table.
$postObject->select('title, content, date');
$postObject->limit(10, 20);
$query = $postObject->get();
$data = $query->getResult();
OR
$postObject->select('title, content, date');
$query = $postObject->get(10, 20);
$data = $query->getResult();
We hope this article helped you to learn How To Use Limit and Offset in CodeIgniter 4 Query Tutorial in a very detailed way.
Read More: PHP Remove http, https, www and slashes From URL
Online Web Tutor invites you to try Skillshike! Learn CakePHP, Laravel, CodeIgniter, Node Js, MySQL, Authentication, RESTful Web Services, etc into a depth level. Master the Coding Skills to Become an Expert in PHP Web Development. So, Search your favourite course and enroll now.
If you liked this article, then please subscribe to our YouTube Channel for PHP & it’s framework, WordPress, Node Js video tutorials. You can also find us on Twitter and Facebook.