dogtag 0 Report post Posted June 7, 2007 Here is my 3rd Code:By this code you can encrypt your text: <?php$a = md5("hello");$b = base64_encode("hello");$c = base64_decode("hello");print "md5 = ".$a."base64_encode = ".$b."base64_decode = ".$c;?> EASY! Share this post Link to post Share on other sites