To fetch data in descending order from the database in CodeIgniter you need to use the order_by() along with get() method. Below is the sample…
Leave a CommentTag: CodeIgniter
In this post, I will show inserting data into a database table using CodeIgniter. We gonna use CodeIgniter Active Records Pattern. This pattern allows information…
1 CommentIn this post, I will show you how easy it is to set up maintenance mode in CodeIgniter using CI’s hooks. while updating your web…
1 CommentIn this tutorial, we will discuss how to generate PDF using DOMPDF with Codeigniter Framework version 3 and composer(PHP dependency manager). From the authors of…
20 CommentsCodeIgniter natively support storing session in the database. You do not need to do any changes in code, just a few configurations and it will…
1 CommentWe are going to discuss how to upload files to the remote server in CodeIgniter using CI’s FTP library. This library has limitations – SFTP…
4 CommentsCodeIgniter permits you to override its default routing behavior through the use of the _remap() function. As you already knew the second segment of the…
1 CommentCodeigniter didn’t provide an option to use subqueries with active record class. So today I would like to provide simple and possible comprehensive techniques on…
4 CommentsIn this CodeIgniter tutorial, I will show you how to fetch data from database using model, view, controller approach. As usual, we need need to…
45 CommentsHere is the simple script to check live username or email availability using jQuery’s Ajax method in CodeIgniter. you can also apply this logic/method to…
2 CommentsI am gonna use CodeIgniter’s active record class to generate Join Queries in this tutorial. Because by using AR class we can write complex joins…
18 CommentsYou can easily watermark images in CodeIgniter by using CI’s image manipulation class. In CI Watermarking is only available using the GD/GD2 library. CI’s image…
21 CommentsPHPExcel is a pure PHP library for reading and writing spreadsheet files and CodeIgniter is one of the well-known PHP MVC Frameworks. In this tutorial,…
86 CommentsI am gonna teach you about CodeIgniter flash messages. CI’s flash sessions functionality let us to use the data for the next server request.Unlike normal…
6 CommentsYesterday someone asked me to make a tutorial about Connecting to Database in CodeIgniter Framework. In order to make connection to database in Ci ,…
13 Comments