How to make hash in Payumoney integration using php

$hash = ”; $hasTemp = $key.”|”.$txnid.”|”.$amount.”|”.$productinfo.”|”.$firstname.”|”.$email.”|”.$udf1.”|”.$udf2.”|”.$udf3.”|”.$udf4.”|”.$udf5.”|”.$udf6.”|”.$udf7.”|”.$udf8.”|”.$udf9.”|”.$udf10; $hasTemp .= “|”.$SALT; $hash = strtolower(hash(‘sha512’, $hasTemp)); Download All necessary document from PayUMoney Website https://www.payumoney.com/websiteintegration.html

Read More

how to make secure hash to send in ebs payment gateway

//Pass your Registered Secret Key $hashData = “Your Secret Key“; $hash = “ebskey”.”|”.urlencode($_POST[‘account_id’]).”|”.urlencode($_POST[‘amount’]).”|”.urlencode($_POST[‘reference_no’]).”|”.$_POST[‘return_url’].”|”.urlencode($_POST[‘mode’]); $secure_hash = md5($hash); // now pass $secure_hash secure hash to ebs .

Read More

ebs payment gateway integration

First we have to post this form to ebsĀ  # Make the Hash $hash = “ebskey”.”|”.$_POST[‘account_id’].”|”.$_POST[‘amount’].”|”.$_POST[‘reference_no’].”|”.$_POST[‘return_url’].”|”.$_POST[‘mode’]; $secure_hash = md5($hash);   <?php $hash = “ebskey”.”|”.$_POST[‘account_id’].”|”.$_POST[‘amount’].”|”.$_POST[‘reference_no’].”|”.$_POST[‘return_url’].”|”.$_POST[‘mode’]; $secure_hash …

Read More