-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathGetBalanceReceipt.php
More file actions
73 lines (53 loc) · 2.05 KB
/
GetBalanceReceipt.php
File metadata and controls
73 lines (53 loc) · 2.05 KB
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
<?php
/******************************************************
DoCaptureReceipt.php
Sends a DoCapture NVP API request to PayPal.
The code retrieves the authorization ID,amount and constructs
the NVP API request string to send to the PayPal server. The
request to PayPal uses an API Signature.
After receiving the response from the PayPal server, the
code displays the request and response in the browser. If
the response was a success, it displays the response
parameters. If the response was an error, it displays the
errors received.
Called by DoCapture.html.
Calls CallerService.php and APIError.php.
******************************************************/
// clearing the session before starting new API Call
require_once 'CallerService.php';
session_start();
/* Construct the request string that will be sent to PayPal.
The variable $nvpstr contains all the variables and is a
name value pair string with & as a delimiter */
$nvpStr="";
/* Make the API call to PayPal, using API signature.
The API response is stored in an associative array called $resArray */
$resArray=hash_call("GetBalance",$nvpStr);
/* Next, collect the API request in the associative array $reqArray
as well to display back to the browser.
Normally you wouldnt not need to do this, but its shown for testing */
$reqArray=$_SESSION['nvpReqArray'];
/* Display the API response back to the browser.
If the response from PayPal was a success, display the response parameters'
If the response was an error, display the errors received using APIError.php.
*/
$ack = strtoupper($resArray["ACK"]);
if($ack!="SUCCESS"){
$_SESSION['reshash']=$resArray;
$location = "APIError.php";
header("Location: $location");
}
?>
<html>
<body>
<center>
<font size=2 color=black face=Verdana><b>GetBalance Response</b></font>
<table>
<?php
require_once 'ShowAllResponse.php';
?>
</table>
</center>
<a class="home" id="CallsLink" href="index.html">Home</a>
</body>
</html>