10.jpg

How to encrypt data in PHP

This is a fairly short and simple post! Have you aver wanted to store and encrypt data while developing in php?
If you want to store the value of the data in $password simply do this!
$enc_password = md5($password);
//To check the value agains the encrypted data you stored, do this
if($enc_password==md5($password) {
//YOUR CODE HERE
}
You can store the md5 [...]

Connecting to a database in PHP, SQL Style

Alright, alright….I am a little behind my usual posting, but hey, I’ve been busy, It was Memorial weekend!
Honestly I was hard at work developing an Online Addressbook utilizing PHP and mySQL. Currently I have the core complete, and am working on the odds and ends (extra addresses, groups, export csv, online mailing, membership users to [...]