View Single Post
Old 08-01-2008, 07:29   #31 (permalink)
PoeT4eva41
rock n' roller
 
PoeT4eva41's Avatar
 
Join Date: Jul 2007
Location: Yerevan, Armenia
Posts: 37
Send a message via ICQ to PoeT4eva41 Send a message via MSN to PoeT4eva41 Send a message via Skype™ to PoeT4eva41
Wow awesome scripts, specially this one.

Quote:
Originally Posted by RaelRode
PHP Code:
// This function encrypts users passwords 3 times.

    
function encrypt($encrypt)

    {

        
$encrypt md5($encrypt); // Encrypt the string to MD5

        
$encrypt sha1($encrypt); // Encrypt the MD5 string to SHA1

        
$encrypt md5($encrypt); // Encrypt the SHA1 string to MD5 AGAIN!!

        
return $encrypt// Return the encrypted string.

    
// End encryption function 

And one from me.

PHP Code:
echo 'something'
To write something, on the page.
  Reply With Quote