I need to add two hex numbers together and having a problem I can't figure it out
$digest = md5_hex("qawsedr"
;
$digest1=$digest+33C93DC8827080D429A127089CEC3745;
$digest2 = md5_hex($digest1);
I get the error message
Bareword found where operator expected at C:\Inetpub\ line 7, near "33C93DC8827080D429A127089CEC3745"
(Missing operator before C93DC8827080D429A127089CEC3745?)
Is there anything special I have to do to add two hex numbers together.
Thanks
Tim
$digest = md5_hex("qawsedr"
$digest1=$digest+33C93DC8827080D429A127089CEC3745;
$digest2 = md5_hex($digest1);
I get the error message
Bareword found where operator expected at C:\Inetpub\ line 7, near "33C93DC8827080D429A127089CEC3745"
(Missing operator before C93DC8827080D429A127089CEC3745?)
Is there anything special I have to do to add two hex numbers together.
Thanks
Tim