In CodeIgniter 3, connecting to an Azure SQL Server involves configuring the database settings in the database.php configuration file. Here are the steps to connect…
Leave a CommentTag: CodeIgniter 3
In this tutorial, I will show you creating a login system using CodeIgniter. To generate a decent login form design we gonna use Twitter Bootstrap…
7 CommentsIn this CodeIgniter Twilio tutorial, I would like to show sending SMS from the CodeIgniter app using the Twilio library. Twilio is a cloud communications…
1 CommentIn 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 enabling CSRF tokens in your CodeIgniter application. To enable CSRF (Cross-Site Request Forgery) protection in CodeIgniter open application/config/config.php…
1 CommentIn this post, I will show you how you can access the CI’s instance object within your custom classes. You can utilize all of CodeIgniter’s…
Leave a CommentIn this tutorial, I would like to show creating a custom helper in your CodeIgniter application. Helper functions are used to avoid repeated code in…
2 CommentsIn this post, I would like to show using of PhpSpreadsheet library within your CodeIgniter 3 project. PhpSpreadsheet is a pure PHP library for reading…
15 CommentsIn my previous post, I wrote a tutorial on Generating a PDF in Codeigniter using mPDF, and in that tutorial, I covered mPDF library manual…
24 CommentsIn 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 CommentCodeIgniter 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 CommentsCodeigniter 2.0 adds an important security feature to prevent CSRF (Cross Site Request Forgery) attacks. Even better, the feature is automatically added to your forms(if…
13 CommentsIn this tutorial, I will show you integrating Captcha in your CodeIgniter application. We gonna use CI’s builtin captcha helper and contains functions that assist…
6 Comments