This repository has been archived by the owner on Apr 24, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 32
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Tyler Hall
committed
Aug 8, 2009
1 parent
43a70e4
commit 585b514
Showing
3 changed files
with
114 additions
and
39 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
<?PHP | ||
require 'includes/master.inc.php'; | ||
|
||
$o = new Order(); | ||
$o->select($_GET['tx'], 'txn_id'); | ||
|
||
if($o->ok()) | ||
{ | ||
$app = new Application($o->app_id); | ||
redirect($app->return_url . '?email=' . $o->payer_email . '®=' . $o->license); | ||
} | ||
else | ||
{ | ||
die("Thank you for your order. Your registration information will be emailed to you shortly. If you have any questions, feel free to contact <a href='mailto:[email protected]'>[email protected]</a>"); | ||
} | ||
|