I am trying to implement EBS payment getway.
i filled all mandatory inputs in form.
code
<?php
$hash = "ebskey"."|".$_POST['account_id']."|".$_POST['amount']."|".$_POST['reference_no']."|".$_POST['return_url']."|".$_POST['mode'];
$secure_hash = md5($hash);
?>
<input name="secure_hash" type="hidden" size="60" value="<?php echo $secure_hash;?>" />
But i get below error.
Oops!
It seems an error has occured, the page you are trying to reach is not accessible.
Error!
SecureHash validation failed
what does error mean?