0byt3m1n1
Path:
/
data
/
17
/
1
/
18
/
11
/
1670011
/
user
/
1801231
/
htdocs
/
affiliates_8mor
/
[
Home
]
File: redirect.php
<?php ##################################################################################### ## JROX.COM Affiliate Manager - redirect.php file ## Version 1.6.2 ## ## Author: Ryan Roxas(ryan@jrox.com) ## Homepage: http://jam.jrox.com ## Bug Reports: http://jam.jrox.com/bugzilla/ ## Release Notes: docs/READ_ME.txt ####################################################################################### ####################################################################################### ## COPYRIGHT NOTICE ## Copyright 2007 JROX Technologies, Inc. All Rights Reserved. ## ## This script may be only used and modified in accordance to the license ## agreement attached (license.txt) except where expressly noted within ## commented areas of the code body. This copyright notice and the ## comments above and below must remain intact at all times. By using this ## code you agree to indemnify JROX Technologies, Inc, its corporate agents ## and affiliates from any liability that might arise from its use. ## ## Selling the code for this program without prior written consent is ## expressly forbidden and in violation of Domestic and International ## copyright laws. ####################################################################################### ####################################################################################### ## This file is used for recording commissions using the URL Redirect setting ####################################################################################### error_reporting(0); ########################################################################################################## ## MANUALLY SET REDIRECT VARIABLES HERE FROM YOUR PAYMENT PROCESSOR OR SHOPPING CART FOR JAM TO PROCESS ## ########################################################################################################## //Set the Product ID: //$program_id = 1; //Set the Sale Amount Variable: //$amount = $sale_amount; //Set the Transaction ID Variable: //$trans_id = $transaction_id; if (!empty($_GET['pid']) AND is_numeric($_GET['pid'])) { $program_id = $_GET['pid']; } else { $program_id = 1; } require "sale.php"; if (!empty($redirect_url)) { header("Location: $redirect_url"); } exit(); ?>