Tutorials

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.

How to Inline Edit Data in Table using PHP and jQuery

Submitted by nurhodelta_17 on
This tutorial tackles how to inline edit data in a table derived from MySQL Table. This means that you are editing the table within the table itself and you don't have to be redirected to a certain edit page. We have used jQuery to make this possible and also to handle our ajax request.

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.