$value) { if($get_magic_quotes_exists == true && get_magic_quotes_gpc() == 1) { $value = urlencode(stripslashes($value)); } else { $value = urlencode($value); } $req .= "&$key=$value"; } $ch = curl_init('https://www'.$paypalmode.'.paypal.com/cgi-bin/webscr'); curl_setopt($ch, CURLOPT_HTTP_VERSION, CURL_HTTP_VERSION_1_1); curl_setopt($ch, CURLOPT_POST, 1); curl_setopt($ch, CURLOPT_RETURNTRANSFER,1); curl_setopt($ch, CURLOPT_POSTFIELDS, $req); curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, 1); curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 2); curl_setopt($ch, CURLOPT_FORBID_REUSE, 1); curl_setopt($ch, CURLOPT_HTTPHEADER, array('Connection: Close')); if( !($res = curl_exec($ch)) ) { curl_close($ch); exit; } curl_close($ch); // debug if ($debug == true) { $file = 'res_'.gmdate("YmdHis").'.txt'; $handle = fopen($file, 'w'); fwrite($handle, $res); fclose($handle); } if (strcmp ($res, "VERIFIED") == 0) { // prepare data $paymentstatus = $_POST['payment_status']; $total = $_POST['mc_gross']; $custom = $_POST['custom']; // end prepare data // check if completed if ($paymentstatus != "Completed") { die; } // check if not negative price if ($total <= 0) { die; } // check for filter params $custom = explode(',', $custom); if (count($custom) == 0) { die; } if ($gsValues['BILLING_PAYPAL_CUSTOM'] == '') { die; } if ($custom[0] == $gsValues['BILLING_PAYPAL_CUSTOM']) { $user_email = $custom[1]; $plan_id = $custom[2]; $api_url = $gsValues['URL_ROOT'].'/api/api.php'; $api_key = $gsValues['SERVER_API_KEY']; if (($api_url != '') && ($api_key != '')) { $url = $api_url.'?api=server&ver=1.0&key='.$api_key.'&cmd=ADD_USER_BILLING_PLAN,'.$user_email.','.$plan_id; file_get_contents($url, false, null); } } } } ?>