Advertisement
Advertisement
| 06.03.2008 at 06:10PM PDT, ID: 23455270 |
|
[x]
Attachment Details
|
||
1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: |
<?php
include_once('./db.inc.php');
include_once('./lib.inc.php');
include_once('./phpauthnet_aim.php');
//CHECK MD5 HASH VALUE
if($authnet['md5hash'] != "") {
if($authnet_results['md5'] != $authnet_results['x_md5_hash']) {
$authnet_results['x_response_code']='3';$authnet_results['x_response_reason_text']='MD5 HASH mis-match';
}
}
foreach ($authnet_results as $key=>$value)
{
echo "$key : $value<br />";
}
}
?>
|