Re: [PHP] Hot to MD5 two values (Valu1+Valu2)

2004-01-19 Thread John W. Holmes
Radwan Aladdin wrote: Can I use : $md5 = md5($variable1 + $variable2); Is it right to use that? Yes, you can do that. Whether it's "right" or not depends. You could have taken the two seconds to try it, either way. :) -- ---John Holmes... Amazon Wishlist: www.amazon.com/o/registry/3BEXC84AB3A5

RE: [PHP] Hot to MD5 two values (Valu1+Valu2)

2004-01-19 Thread Jay Blanchard
[snip] Can I use : $md5 = md5($variable1 + $variable2); Is it right to use that? Notice : I don't want "&" I want to add the first value to the second one(1=2=3).. then make them MD5...MD5(3) (For example).. [/snip] Have you tried it? Of courser if all else failed you could do ... $myDog = $va

[PHP] Hot to MD5 two values (Valu1+Valu2)

2004-01-19 Thread Radwan Aladdin
Hi all.. I want to know.. Can I use : $md5 = md5($variable1 + $variable2); Is it right to use that? Notice : I don't want "&" I want to add the first value to the second one(1=2=3).. then make them MD5...MD5(3) (For example).. Regards..