Category Codeigniter

Send-HTML-Email-With-An-Image-In-CodeIgniter

Send HTML Email With Image In CodeIgniter.

Sending an Email is a very common functionality in any web application. For example, we can send welcome Email when user register on our website, send a newsletter Email, sending an invoice, sending a birthday wishes. We can send either…

Login Example In CodeIgniter 4.

Login Example In CodeIgniter 4.

In this example we will learn,how to develop a login form in CodeIgniter 4. Below are the steps to implement this , you need to simply follow below steps. Download & Configure CodeIgniter 4 Application. Download the fresh version of CodeIgniter…

codeigniter 4 crud example

CodeIgniter 4 CRUD with MySQL

CRUD stands for Create, Read, Update, and Delete. CRUD operations are basic data manipulation for the database. INSERT query is used to insert data in the database .  SELECT Query is used to select a data from the database. UPDATE…

custom helper in codeigniter.

Create Custom Helper In CodeIgniter.

As the name suggest, helper help with tasks. helper is just a collection of functions. In this post we will learn how we can create custom helper in CodeIgniter. There are two types of helper in CodeIgniter. System Helper. Custom…

Rest API In Codeigniter - 3.

Rest API In Codeigniter – 3.

Rest API In Codeigniter – 3. Before understanding “REST API” we have to understand what is REST and what is API first. What is REST? REST stands for Representational State Transfer which is a technique or architecture for managing information…

Codeigniter MySQL Pagination Example

Codeigniter MySQL Pagination Example The benefit of using any web application framework is that you don’t have to worry about the common tasks like input handling, form validation and the like, as the framework already provides wrappers for those features.…

Codeigniter Autocomplete Search Using Typeahead

Codeigniter – Autocomplete Search using Typeahead

In this post , I will explain how to implement  dynamic autocomplete search using typeahead  in codeigniter application. we will take simple bootstrap text box and make it dynamic real time search using typeahead in codeigniter application. Step 1: Create…