login form with md5 encrytion using php

Simple Password Safety using MD5 Encryption in PHP

Submitted by rinvizle on
In this tutorial we will create a simple safety password using MD5 encryption. PHP offers the md5 function which calculates the MD5 hash of a string using the MD5 Message Digest Algorithm. This algorithm takes a string and generates a 128-bit fingerprint of the input string. MD5 is a one-way encryption which means that you cannot decipher the fingerprint to get the original string. Yet another feature of MD5 is that the algorithm will always generate the same fingerprint for a given string.

Log In and Registration Form using MD5 in PHP/MySQL

Submitted by alpha_luna on
In this tutorial, we are going to learn how to create Log In and Registration Form using MD5 Encryption in PHP/MySQL. The features of this simple program, it has a registration form for a user and it has an input validation that the empty field is not allowed same with the login form and the password are encrypted using MD5.