forked from lesliecruzadyen/adyen-web-sdk-sample-code_1.0
-
Notifications
You must be signed in to change notification settings - Fork 0
/
paymentsResult.php
executable file
·29 lines (25 loc) · 1.02 KB
/
paymentsResult.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<?php
/**
* ######
* ######
* ############ ####( ###### #####. ###### ############ ############
* ############# #####( ###### #####. ###### ############# #############
* ###### #####( ###### #####. ###### ##### ###### ##### ######
* ###### ###### #####( ###### #####. ###### ##### ##### ##### ######
* ###### ###### #####( ###### #####. ###### ##### ##### ######
* ############# ############# ############# ############# ##### ######
* ############ ############ ############# ############ ##### ######
* ######
* #############
* ############
*
* Adyen Checkout Example (https://www.adyen.com/)
*
* Copyright (c) 2017 Adyen BV (https://www.adyen.com/)
*
*/
require_once __DIR__ . '/lib/Client.php';
header("Content-type: application/json");
$client = new Client();
$data = $_POST['payload'];
echo $client->paymentResult($data);