-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathprocess.php
40 lines (31 loc) · 873 Bytes
/
process.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
30
31
32
33
34
35
36
37
38
39
40
<?php
/*
* process.php
*
* PHP Toolkit for PayPal v0.51
* http://www.paypal.com/pdn
*
* Copyright (c) 2004 PayPal Inc
*
* Released under Common Public License 1.0
* http://opensource.org/licenses/cpl.php
*
*/
//Configuration File
include __DIR__ . '/header.php';
require_once __DIR__ . '/paypal_includes/config.inc.php';
//Global Configuration File
require_once __DIR__ . '/paypal_includes/global_config.inc.php';
?>
<html>
<head><title>::PHP PayPal::</title></head>
<body onLoad="document.paypal_form.submit();">
<form method="post" name="paypal_form" action="<?= $paypal['url'] ?>">
<?php
//show paypal hidden variables
showVariables();
?>
<div style="text-align: center;"><span style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: x-small; color: 333333; ">Processing Transaction . . . </span></div>
</form>
</body>
</html>