I'm using a flat file database right now and Someone suggested using md5 encyrption to keep passwords safe, I've check the manual and I know how change a string into a md5 string.
Can i change a MD5 string back into a non encrypted sting?
<?php
$string = "password";
echo md5($string);
?>
md5($string) => $string