Dear all,
What should I do to encrypt and decrypt any text with simple PHP function?
I could encrypt any text with this function:
$mytext="what";
$encrypt_text=md5($mytext);
or
$encrypt_text=trim($mytext);
Well, how to decrypt this function?
Maybe anyone could give other function to encrypt and decrypt the text?
Thank you in advance
What should I do to encrypt and decrypt any text with simple PHP function?
I could encrypt any text with this function:
$mytext="what";
$encrypt_text=md5($mytext);
or
$encrypt_text=trim($mytext);
Well, how to decrypt this function?
Maybe anyone could give other function to encrypt and decrypt the text?
Thank you in advance