signup

Creating a CodeIgniter Signup From with Email Verification

This tutorial tackles how to create a simple signup form with validation and email verification in CodeIgniter. CodeIgniter is a lightweight PHP framework that uses MVC(Model-View-Controller) architecture. Sending email verification is a way to check whether the users' inputted email is valid or not.

Login and Register using PDO in PHP

This tutorial tackles on how to create a simple login and register using PDO extension in PHP. PDO stands for PHP Data Objects and as per official site description, defines a lightweight, consistent interface for accessing databases in PHP. PDO is the most recommended extension nowadays to interact with database because of many features like preventing SQL injections, prepared statements, etc.

Angular JS Simple Register using Ui-Router

This tutorial tackles on how to create a simple register in Angular JS using Ui-Router to handle our routes and PHP/MySQLi to handle our backend and database. After a successful register, we are going to redirect our registered user to our homepage. Angular JS is a javascript framework maintained by Google and is capable of creating Single-Page Applications.