MYSQL

How to Connect to Multiple Databases in CodeIgniter

Submitted by nurhodelta_17 on
This tutorial tackles on how to connect multiple databases in single CodeIgniter Application. Normally, we used one database for our data but for cases that we needed to use multiple databases, this tutorial will teach you on how to have multiple databases in your CodeIgniter application.

CodeIgniter Ajax File Upload using jQuery

Submitted by nurhodelta_17 on
This tutorial tackles oh how to ajax upload file in CodeIgniter using jQuery. In order for us to send the file via ajax request, where gonna be using FileReader and FormData. File reader reads the selected file then Formdata holds our file for ajax request. We use jQuery for our ajax request which is a javascript library that makes you handle javascript better.

CodeIgniter Ajax Signup with Validation using jQuery

Submitted by nurhodelta_17 on
This tutorial tackles on how to create a signup/register form in CodeIgniter. We use jQuery to handle our server side signup request. jQuery is a javascript library that makes you use javascript easier. CodeIgniter is a lightweight PHP framework that uses MVC(Model-View-Controller) architecture.

CodeIgniter Register with Validation

Submitted by nurhodelta_17 on
This tutorial tackles on how to create a simple registration with form validation using CodeIgniter. CodeIgniter is a lightweight PHP framework that uses the MVC(Model-View-Controller) architechture. Form validation is a process of checking user's input whether it is valid or not depending on the rules applied by creator.

CodeIgniter File Upload with Flashdata

Submitted by nurhodelta_17 on
This tutorial tackles on how to upload files in CodeIgniter with flashdata. CodeIgniter is a PHP framework that uses MVC(Model-View-Controller) architecture. Flashdata are a type of session but is just set one time means that after you reload the page, this data is removed. Flashdata are usually used when displaying action messages like success or errors.