I'm using + sign to add up 2 MD5 hashes like so:
md5('string1') + md5('string2')
now if I did this with strings, like so:
'string1' + 'string2'
...PHPp would give me 0 as a return value. However, with MD5 hashes, it always returns a numeric value, for which I cannot determine any origin.