设置 Paypal 连接到脚本

发布于 2024-07-27 14:46:08 字数 146 浏览 2 评论 0原文

我相信我已经正确遵循了设置说明,将 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.

Thanks Jeff

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

迷离° 2024-08-03 14:46:08
<?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=='[email protected]' && 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);
?>
<?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=='[email protected]' && 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);
?>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文