I have very simple query .
I am fetching user name and password from a Mysql DB using php.
The password is in md5() encoded. Can any one help me out
script
while($rfg=mysql_fetch_array($rc)){
//print_r($rfg);
echo $_POST['im_password'] = $rfg['Password'];
echo $_POST['im_user'] = $rfg['Nombre'];
}
how I can decode the md5 password to real text in php ??
Thanks in Advance