Skip to content

Instantly share code, notes, and snippets.

@kishanio
Last active July 7, 2022 05:43
Show Gist options
  • Save kishanio/f09e68241b097d16475c to your computer and use it in GitHub Desktop.
Save kishanio/f09e68241b097d16475c to your computer and use it in GitHub Desktop.
CCAvenue PHP Library
<?php
require_once __DIR__ . '/../vendor/autoload.php';
use Kishanio\CCAvenue\Payment as CCAvenueClient;
$ccavenue = new CCAvenueClient( '<merchant_id>', '<working_key>', '<redirect_url>' );
// set details
$ccavenue->setAmount( '<Amount>' );
$ccavenue->setOrderId( '<order_id>' );
$ccavenue->setBillingName( '<billing_cust_name>' );
$ccavenue->setBillingAddress( '<billing_cust_address>' );
$ccavenue->setBillingCity( '<billing_cust_city>' );
$ccavenue->setBillingZip( '<billing_cust_zip>' );
$ccavenue->setBillingState( '<billing_cust_state>' );
$ccavenue->setBillingCountry( '<billing_cust_country>' );
$ccavenue->setBillingEmail( '<billing_cust_email>' );
$ccavenue->setBillingTel( '<billing_cust_tel>' );
$ccavenue->setBillingNotes( '<billing_cust_notes>' );
// copy all the billing details to chipping details
$ccavenue->billingSameAsShipping();
// get encrpyted data to be passed
$data = $ccavenue->getEncryptedData();
// merchant id to be passed along the param
$merchant = $ccavenue->getMerchantId();
<!-- Request -->
<form method="post" name="redirect" action="http://www.ccavenue.com/shopzone/cc_details.jsp">
<?php
echo '<input type=hidden name=encRequest value="'.$data.'"">';
echo '<input type=hidden name=Merchant_Id value="'.$merchant.'">';
?>
</form>
<script language='javascript'>document.redirect.submit();</script>
</body>
</html>
<?php
require_once __DIR__ . '/../vendor/autoload.php';
use Kishanio\CCAvenue\Payment as CCAvenueClient;
// Get Response
$response=$_POST["encResponse"];
$ccavenue = new CCAvenueClient( 'M_smi44769_44769', '9vixgnzn5772ev1b13bz52chdxeq0bk3' );
// Check if the transaction was successfull.
echo $ccavenue->response( $response );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment