örnek kodlar
<?php
$username='';
$key='';
if (!( (isset($_POST['res'])) && (isset($_POST['hash'])))) { echo "missing parameter"; die(); }
$hash=hash_hmac('sha256',$_POST['res'].$username,$key,false); if (strcmp($hash,$_POST['hash'])!=0) { die(); }
$json_result=base64_decode($_POST['res']); $array_result=json_decode($json_result,true);
$email=$array_result['email'];
$orderid=$array_result['orderid'];
$currency=$array_result['currency'];
$price=$array_result['price'];
$buyername=$array_result['buyername'];
$buyersurname=$array_result['buyersurname'];
$productcount=$array_result['productcount'];
$productid=$array_result['productid'];
$customernote=$array_result['customernote'];
$istest=$array_result['istest'];
echo "success";
?>daha önce kullanan varmı varsa kod atabilirmi