forked from angellops/paypal-php-library
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBMButtonSearch.php
More file actions
31 lines (25 loc) · 996 Bytes
/
Copy pathBMButtonSearch.php
File metadata and controls
31 lines (25 loc) · 996 Bytes
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
<?php
// Include required library files.
require_once('includes/config.php');
require_once('includes/paypal.class.php');
// Create PayPal object.
$PayPalConfig = array(
'Sandbox' => $sandbox,
'APIUsername' => $api_username,
'APIPassword' => $api_password,
'APISignature' => $api_signature
);
$PayPal = new PayPal($PayPalConfig);
// Prepare request arrays
$BMButtonSearchFields = array
(
'startdate' => '', // Required. Starting date for the search. UTC/GMT format: 2009-08-24T05:38:48Z
'enddate' => '' // Ending date for the search. UTC/GMT format: 2010-05-01T05:38:48Z
);
$PayPalRequestData = array('BMButtonSearchFields'=>$BMButtonSearchFields);
// Pass data into class for processing with PayPal and load the response array into $PayPalResult
$PayPalResult = $PayPal->BMButtonSearch($PayPalRequestData);
// Write the contents of the response array to the screen for demo purposes.
echo '<pre />';
print_r($PayPalResult);
?>