PHP Tutorial : Secured encrypted passwords
Feb 5, 2009 Basic PHP
Are you searching for a way to encrypt and secure a password or just a simple phrase? If the answer is yes, in php exists a lot of functions which does that, but the most popular is md5() encrypting function. It simply cant be decrypted.
<?php
$password = “mypass”;
$password = md5($password);
?>
Read PHP Tutorial : Secured encrypted passwords »
Tags: encrypt, md5, password, php encrypt, php password, php secured, secure
PHP Tutorial : Password protect page script
Jan 10, 2009 Useful PHP
Do you have some content which you do not want to show to public? There is a php script which “hides” the content, protecting it with a password and username to access a page. It can be done with MySQL database but I really want to keep things simplier and I will do without mysql,…………….
Read PHP Tutorial : Password protect page script »
Tags: password protected area, password protected pages, password secured, php password, php password protected, php password protected pages, php password protection, php password secured, php protect, php protected, php secure, php secure area, php secure page, protected area, secure area

