To make my email verification link more secure, i have performed MD5 before adding email to the url, along with Activation code.
my email verification url looks some thing like this
Code: Select all
$email_mask = md5($email);
http://www.domain.com/activate?sid=$ema ... ation_code$email = md5($email_mask);
I am getting values which is not the email. Does any one knows where I am going wrong?
Thank you,