Posts Tagged with 'CodeIgniter'

Google reCAPTCHA is one of the most effective tools to protect your forms from bots and spam. If you're building forms in CodeIgniter, integrating reCAPTCHA helps improve security without compromising the user experience. This article …

Last updated 5 months, 1 week ago | 370 views

Tags:- PHP CodeIgniter Google reCAPTCHA

How to Extend CodeIgniter Session Expiration Time (Complete Guide) Sessions are crucial for managing user login states, preferences, and temporary data in web applications. In CodeIgniter, session expiration is configurable, but many developers find it …

Last updated 5 months, 1 week ago | 424 views

Tags:- PHP CodeIgniter

Accessing CodeIgniter Super Object from External PHP Script (Outside CodeIgniter) Sometimes, you may need to access CodeIgniter's core features — such as models, libraries, or configuration — from a standalone PHP script that’s not within …

Last updated 5 months, 1 week ago | 523 views

Tags:- PHP CodeIgniter

Introduction In this article, we'll explore how to use the JOIN query in CodeIgniter's Active Record. We'll cover different types of joins, provide step-by-step explanations, code snippets, and conclude with a complete code example. Additionally, …

Last updated 7 months ago | 551 views

Tags:- PHP CodeIgniter

Introduction In this article, we'll explore how to count the occurrences of user_id in a database table, group the results, and display the top 10 users with the most entries using CodeIgniter's Active Record query …

Last updated 7 months ago | 416 views

Tags:- PHP CodeIgniter

Introduction Creating image thumbnails and caching them in CodeIgniter can significantly improve page loading times and reduce server load. This guide will show you how to achieve this using CodeIgniter’s Image Manipulation Class. ✅ Step …

Last updated 7 months ago | 414 views

Tags:- PHP CodeIgniter

Introduction Resizing and cropping images on the fly in CodeIgniter is essential for managing image dimensions and optimizing performance. This guide will show you how to effectively use CodeIgniter’s Image Manipulation Class for resizing and …

Last updated 7 months ago | 402 views

Tags:- PHP CodeIgniter

Improving the performance of your CodeIgniter application is essential for providing a seamless user experience. Here’s a guide to help you optimize your CodeIgniter project. ✅ Step 1: Enable Caching Use CodeIgniter's built-in caching system …

Last updated 7 months ago | 395 views

Tags:- PHP CodeIgniter

Opening a PDF file in a new browser tab can enhance user experience, especially when dealing with reports or documentation. CodeIgniter, a popular PHP framework, makes this process straightforward. Here's a step-by-step guide to help …

Last updated 7 months ago | 463 views

Tags:- PHP CodeIgniter

The csrf_token is used for protection against Cross-Site Request Forgeries. This kind of attack takes place when a malicious website consists of a link, some JavaScript, or a form whose aim is to perform some …

Last updated 3 years, 4 months ago | 1396 views

Tags:- PHP Django CodeIgniter

Codeigniter | where_in  The where_in() allows you to pass an array in the where clause. It generates a WHERE field IN ('item', 'item') SQL query. Syntax: $this->db->where('condition'); <?php $ids = array('1', '2', '3'); $this->db->from('users'); $this->db->where_in('id', …

Last updated 6 years ago | 8730 views

Tags:- CodeIgniter

Codeigniter | List Databases supported By Codeigniter Following Databases are supported by Codeigniter Frameworks: Database Name Drivers to support Codeigniter MySQL MySQL (deprecated), MYSQLI and PDO drivers Oracle oci8 and PDO drivers PostgreSQL Postgre and …

Last updated 6 years, 3 months ago | 3123 views

Tags:- CodeIgniter

Codeigniter | routes  Routing rules are defined in your application/config/routes.php file.    In it, you'll see an array called $route that permits you to specify your own routing criteria. Routes can either be specified using …

Last updated 6 years, 3 months ago | 2507 views

Tags:- CodeIgniter

CodeIgniter | What is helpers | Load helper file Helper is simply a collection of function in a particular category which helps you with tasks. The helper file can be loaded in controller constructor, some …

Last updated 6 years, 3 months ago | 6588 views

Tags:- CodeIgniter

Codeigniter | Set timezone To set default timezone in Codeigniter, you can add the date_default_timezone_set() function in your application/config.php or index.php file. date_default_timezone_set('your timezone');   <?php // India timezone date_default_timezone_set('Asia/Kolkata'); ?>  

Last updated 6 years, 3 months ago | 5491 views

Tags:- CodeIgniter