2007-05-27 17:33:06 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
require_once("../inc/util.inc");
|
|
|
|
|
2007-05-31 18:15:33 +00:00
|
|
|
$st = get_str("st", true);
|
|
|
|
|
2007-05-27 17:33:06 +00:00
|
|
|
page_head("PayPal - Transaction Completed");
|
|
|
|
|
|
|
|
if ($st == "Completed") {
|
|
|
|
echo "<div>Thank you for donating!<br>\n";
|
|
|
|
echo "Your donation for has been completed.<br>\n";
|
|
|
|
echo "Your donation will be added to the progress bar after confirmation by PayPal.</div>";
|
|
|
|
} else {
|
|
|
|
echo "<strong>You have canceled your donation</strong>";
|
|
|
|
}
|
|
|
|
|
|
|
|
page_tail();
|
|
|
|
|
|
|
|
?>
|