<?php $allphone = array( ‘11111’, ‘22222’, ‘33333’, ‘44444’, ‘55555’, ‘55555’, ‘66666’, ‘+66666’, ‘77777’, ‘88888’, ‘99999’, ‘00000’); echo “Duplicate value Array: “; echo “<br>”; print_r($allphone); echo …
Read Morehow to search duplicate elements from array and creates unique array
<?php $allphone = array( ‘11111’, ‘22222’, ‘33333’, ‘44444’, ‘55555’, ‘55555’, ‘66666’, ‘+66666’, ‘77777’, ‘88888’, ‘99999’, ‘00000’); echo “Mixed Array: “.”<br>”; print_r($allphone); echo “<br>”; $narr = …
Read Morehow to search an element in an array using php
<?php // SEARCHING ELEMENTS IN AN ARRAY // FIND IN THIS ARRAY $allphone = array( ‘9831458564’, ‘9831256415’, ‘9854657616’, ‘9654857617’, ‘9645877618’, ‘8569877898’, ‘5824578985’, ‘12345678’, ‘584587258’, ‘5265487’, …
Read Morewhat is test credentials in payubiz payment gateway integration in php
https://test.payu.in/_payment You can check whether you are able to reach the payment page successfully and see the credit card options. Merchant ID: gtKFFx SALT: …
Read Moredifference between Payumoney and payubiz payment gateway
PayU Payment Gateway has two unit 1. PayUbiz 2. Payumoney PayUbiz: It provides fast payment sattlement. When user paid at that time payment transferred to …
Read MoreWhat is responded parameter after payment by PayUbiz payment gateway
Response parameters Below are the response parameters that is posted by PayU to Merchant 1 . mihpayid: It is a unique reference number created for …
Read Morewhat is POST request data and its meaning for PayUbiz
Post Request (Non-seamless) Below parameters needs to be posted by Merchant to PayU in Transaction Request key (Mandatory) : This parameter is the unique Merchant …
Read Morewhat is the test credentials for PayUMoney
PayUMoney Test Mode er credentials:: Test Card Name: any name Test Card Number: 5123456789012346 Test CVV: 123 Test Expiry: May 2017
Read MoreWhat is PayUMoney returned value after success in php
All value is posted. The datas are: Array ( [mihpayid] => 403993715514357757 [mode] => DC [status] => success [unmappedstatus] => captured [key] => DgdPazAK [txnid] …
Read MoreHow 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