-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathindex.html
More file actions
118 lines (113 loc) · 3.4 KB
/
index.html
File metadata and controls
118 lines (113 loc) · 3.4 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
<!--
index.html
The main web page with links to each sample.
Calls DoDirectPayment.php, SetExpressCheckout.php, and
GetTransactionDetails.html.
-->
<html>
<head>
<title>PayPal NVP PHP API Web Samples Main Page</title>
<link href="sdk.css" rel="stylesheet" type="text/css" />
</head>
<body>
<center>
<h4>
Welcome to the PayPal PHP SDK Samples Main Page</h4>
<table id="calls">
<tr>
<th>
Website Payments Pro and ExpressCheckout Samples
</th>
</tr>
<tr>
<td>
<a id="DoDirectPaymentSaleLink" href="DoDirectPayment.php?paymentType=Sale">DoDirectPayment</a> - Sale
</td>
</tr>
<tr>
<td>
<a id="DoDirectPaymentAuthorizationLink" href="DoDirectPayment.php?paymentType=Authorization">DoDirectPayment</a> - Authorization
</td>
</tr>
<tr>
<td>
<a id="ExpressCheckoutSaleLink" href="SetExpressCheckout.php?paymentType=Sale">ExpressCheckout</a> - Sale
</td>
</tr>
<tr>
<td>
<a id="ExpressCheckoutAuthorizationLink" href="SetExpressCheckout.php?paymentType=Authorization">ExpressCheckout</a> - Authorization
</td>
</tr>
<tr>
<td>
<a id="ExpressCheckoutOrderLink" href="SetExpressCheckout.php?paymentType=Order">ExpressCheckout</a> - Order
</td>
</tr>
<tr>
<td>
<a id="ThreeSecureLink" href="3DSecure/ThreeDSecure.php?paymentType=Sale">DoDirectPayment - 3D Secure</a> - Sale
</td>
</tr>
<tr>
<th>
Administrative Samples</th>
</tr>
<tr>
<td>
<a id="DoAuthorizationLink" href="DoAuthorization.php">Authorization</a>
</td>
</tr>
<tr>
<td>
<a id="DoCaptureLink" href="DoCapture.php">DoCapture</a>
</td>
</tr>
<tr>
<td>
<a id="DoVoidLink" href="DoVoid.php">DoVoid</a>
</td>
</tr>
<tr>
<td>
<a id="GetTransactionDetailsLink" href="GetTransactionDetails.html">GetTransactionDetails</a>
</td>
</tr>
<tr>
<td>
<a id="TransactionSearchLink" href="TransactionSearch.php">TransactionSearch</a>
</td>
</tr>
<tr>
<td>
<a id="RefundTransactionLink" href="RefundTransaction.php">RefundTransaction</a>
</td>
</tr>
<tr>
<td>
<a id="DoReauthorizationLink" href="DoReauthorization.html">Reauthorization</a>
</td>
</tr>
<tr>
<td>
<a id="MassPayLink" href="MassPay.html">MassPay</a>
</td>
</tr>
<tr>
<td>
<a id="GetBalanceLink" href="GetBalance.php">GetBalance</a>
</td>
</tr>
<tr>
<th>
Recurring Payments Samples</th>
</tr>
<tr>
<td>
<a id="RecurringPaymentsLink" href="RecurringPayments/RecurringPayments.php">Recurring Payments</a>
</td>
</tr>
</table>
</center>
</body>
</html>