设置贝宝以连接到脚本 [英] Setting up Paypal to connect to script

查看:89
本文介绍了设置贝宝以连接到脚本的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有,我相信正确地遵循了将Paypal连接到我的脚本的设置说明.我有一个可以让用户购买积分的游戏.现在,我必须将贝宝信息直接添加到数据库中.我收到交易电子邮件,我和用户都确认了购买.但是它不会显示在我的数据库中.有人可以帮我吗.

I have, I believe followed the set up instructions correctly for connecting paypal to my script.I have a game that is set up to let users buy credits. Right now I have to add the paypal info directly into the database. I get the transaction email, both me and the user confirming the purchase. But it will not show up in my database.Can someone help me please.

感谢杰夫

推荐答案

<?php
$host = 'host';
$user = 'user';
$password = 'pass';
$db = 'db';

$con = mysql_connect($host,$user,$password);
if (!$con)
  {
   die('Could not connect: ' . mysql_error());
  }

mysql_select_db($db, $con);

// read the post from PayPal system and add 'cmd'
$req = 'cmd=_notify-validate';

foreach ($_POST as $key => $value) {
$value = urlencode(stripslashes($value));
$req .= "&$key=$value";
}

// post back to PayPal system to validate
$header .= "POST /cgi-bin/webscr HTTP/1.0\r\n";
$header .= "Content-Type: application/x-www-form-urlencoded\r\n";
$header .= "Content-Length: " . strlen($req) . "\r\n\r\n";
$fp = fsockopen ('ssl://www.paypal.com', 443, $errno, $errstr, 30);

// assign posted variables to local variables
$item_name = $_POST['item_name'];
$item_number = $_POST['item_number'];
$payment_status = $_POST['payment_status'];
$payment_amount = $_POST['mc_gross'];
$payment_currency = $_POST['mc_currency'];
$txn_id = $_POST['txn_id'];
$receiver_email = $_POST['receiver_email'];
$payer_email = $_POST['payer_email'];
$requestid = $_POST['custom'];

if (!$fp) {
$file = fopen("./connection.php", "w");
$content = "<?php
echo 'Error no connection';
echo'" . now() . "';
?>";

fwrite ($file, $content);
fclose ($file);
} else {
fputs ($fp, $header . $req);
while (!feof($fp)) {
$res = fgets ($fp, 1024);
if (strcmp ($res, "VERIFIED") == 0) {
$sql = "SELECT requestID FROM Requests WHERE txn_id='" . $txn_id . "'";
$chk = mysql_query($sql);
if ($payment_status=='Completed' && $receiver_email=='seller@paypalsandbox.com' && mysql_num_rows($chk)==0){
$update = "UPDATE Requests SET payment='Completed' WHERE requestID='" . $requestid . "' && txn_id='" . $txn_id . "' WHERE requestID='" . $requestid . "'";

}
else {
$update = "UPDATE Requests SET payment='" . $payment_status . "' WHERE requestID='" . $requestid . "' && txn_id='" . $txn_id . "' WHERE requestID='" . $requestid . "'";
}
}

else if (strcmp ($res, "INVALID") == 0) {
$update = "UPDATE Requests SET payment='Invalid' WHERE requestID='" . $requestid . "' && txn_id='" . $txn_id . "' WHERE requestID='" . $requestid . "'";
}

mysql_query($update,$con);
}

fclose ($fp);
}

mysql_close($con);
?>

这篇关于设置贝宝以连接到脚本的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆