signup

Creating a CodeIgniter Signup From with Email Verification

Submitted by nurhodelta_17 on
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

Submitted by nurhodelta_17 on
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

Submitted by nurhodelta_17 on
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.

AngularJS Signup/Register using PHP/MySQLi

Submitted by nurhodelta_17 on
This tutorial tackles on how to create a Signup/Registration form using Angular JS with the help of PHP/MySQLi to handle our MySQL Database. Angular JS is a javascript framework maintained by Google and is capable of creating Single-Page Applications. After a successful register in this tutorial, the user is directed to our homepage.