-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdonate.php
32 lines (30 loc) · 1.18 KB
/
donate.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
<?php
include_once('header.php');
?>
<h2>gtd-php </h2>
<h3>Help Support gtd-php through your donations</h3>
<p>
Donations to the project are greatly appreciated and are used to
help us to pay for hosting services that support our cvs and svn
repositories, the user forums, documnentation and related activities.
</p>
<p>
You can donate via paypal by simply clicking on the following button.
</p>
<form action="https://www.paypal.com/cgi-bin/webscr" method="post">
<p>
<input type="hidden" name="cmd" value="_xclick" />
<input type="hidden" name="business" value="sjsrey@gmail.com" />
<input type="hidden" name="item_name" value="gtd-php" />
<input type="hidden" name="no_shipping" value="2" />
<input type="hidden" name="no_note" value="1" />
<input type="hidden" name="currency_code" value="USD" />
<input type="hidden" name="tax" value="0" />
<input type="hidden" name="bn" value="PP-DonationsBF" />
<input type="image" src="https://www.paypal.com/en_US/i/btn/x-click-but04.gif" name="submit" alt="Make payments with PayPal - it's fast, free and secure!" />
<img alt="" src="https://www.paypal.com/en_US/i/scr/pixel.gif" width="1" height="1" />
</p>
</form>
<?php
include_once('footer.php')
?>