Jump to content

[SOLVED] Md5 encryption problem!


me1000

Recommended Posts

so,

 

I am trying to run a MD5() function on a string, however it seems the be encrypting the variable rather than the variable value.

for example...

$userpass = "abcdefg";
md5($userpass);
md5(abcdefg);

 

shouldnt the code above return the same value?

it doesnt though...

 

I was able to figure out that the encryption is being preformed on the variable name itself ($userpass), not the variable value (abcdefg).

 

can someone explain what Im doing wrong?

 

Thanks,

Link to comment
https://forums.phpfreaks.com/topic/86876-solved-md5-encryption-problem/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.