Decrypt MD5

I am trying to decrypt an MD5 hash that I create in a php file and the echo, I recieve the MD5 via WWWForm.data. I need to decrypt the MD5 using the same secret key or salt.

 $secretKey="REPLACED"; #
       			$real_hash = md5($datas["type"] . $secretKey);
       			
       			$secretKey2="REPLACED";  
       			$real_hash2 = md5($real_hash . $secretKey2);
       			echo $real_hash2;

I am double salting this MD5 for security reasons. the reason I am doing this is because if you are a pro member on our site, you will have special in game advantages. Please help me :slight_smile:

bump

there is no way to decrypt md5 hash - it is a one way algorythm what you wanna do is matching the key the user provided against the one stored in the database or somewhere