View Single Post
02-05-2007, 04:04 PM
#3
localhost is offline localhost
localhost's Avatar
Status: Dediport Hosting
Join date: Jul 2006
Location: Berkshire
Expertise: programming, business
Software: Dreamweaver
 
Posts: 1,316
iTrader: 17 / 100%
 

localhost is on a distinguished road

  Old

Maybe use some type of encryption for example SHA1? Maybe do:
$password = 'blah';
PHP Code:
$cpassword md5($password);
// Then safer..
$spassword sha1($cpassword); 
?