<?php
error_reporting(E_ALL ^ E_NOTICE); 
	
if ($_SERVER["REQUEST_METHOD"] == "GET") {
	$_POST =$_GET;
	$test=1;
	echo "<p>Testing";
} else {
	$test=0;
}

if ($_POST['test_ipn'] == "1") {
	$test=1;
	echo "<p>Testing";
}

$abs_path = dirname(__FILE__);
//require_once $abs_path."/aqprime_user/PHP/Config.php";
require_once $abs_path."/ipn_paypal.php";

processResponse();

?> 

