CRUD operations with checkbox using PHP and MySQL.

PHP and MySql are one of the most widely used technology to interact with the database. In our previous tutorials, we have performed a simple operation to get values of multiple checked checkboxes using PHP. In this blog post, we are going to demonstrate an example  of CRUD (create, read, update and delete) operations with checkboxes …

Bootstrap Form

Bootstrap makes it easy with the simple HTML markup and extended classes for different styles of forms. Bootstrap greatly simplifies the process of styling and alignment of form controls like labels, input fields, select boxes, textareas, buttons, etc. through predefined set of classes. HTML forms are the integral part of the web pages and applications, …

CodeIgniter Image Library For Image Manipulation

While developing any web application there is a need to manipulate image dynamically such as while uploading an image. In this tutorial we are going to explain an example, which shows how to use CodeIgniter’s image library for Image Manipulation. You can find Image_Lib.php class inside your CodeIgniter project’s system/libraries folder. First load image_lib library in your …

PHP Multi Page Form

Sessions in PHP are used to retain values of a web page and can transfer them from one page to another. Using this property, we can create a multi page form in PHP.

jQuery Mobile Form Example

jQuery mobile is a framework to develop mobile friendly web applications. It contains lot of functions to make user interaction smooth and effective.
In this example, we explains how to add jQuery mobile library to your HTML page and create a simple form using it.

Form Validation Using PHP

Validation is very important aspects in data submission.

We have already explain about form validation using javascript and jQuery, but this time we will show you how to validate your form using PHP.