My credit card gateway "does not use HMAC-MD5 for this security
feature. Only plain MD5 (per RFC 1321) is necessary. "
My code is:
$string = "correctinformation";
$test = md5($string);
Printing $test shows a different value. What could be going on?