我的脚本有一些关于贝宝 IPN 的问题。我使用 PHPDesigner 7,它在第 (88) 行给了我一个红色错误,我真的试图查看是否缺少一个大括号,或者是否有问题但似乎没有任何问题,hoveren PHPDesigner 在第 88 行准确地显示了我(语法错误意外T_ELSE)。
任何帮助表示赞赏提前谢谢。
这是我的代码:
<?php
// PHP 4.1
// read the post from PayPal system and add 'cmd'
$req = 'cmd=_notify-validate';
$File = "errorss.txt";
$Handle = fopen($File, 'w');
$Data = "Entered the IPN script\n";
fwrite($Handle, $Data);
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);
$Data = "Authentication Complete\n";
fwrite($Handle, $Data);
// 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'];
$payment_gross = $_POST['payment_gross'];
$payment_fee = $_POST['payment_fee'];
$Data = "Iten number:".$item_number." ".$payment_status."\n";
fwrite($Handle, $Data);
if (!$fp) {
$Data = "Error\n";
fwrite($Handle, $Data);
} else {
fputs ($fp, $header . $req);
while (!feof($fp)) {
$res = fgets ($fp, 1024);
if (strcmp ($res, "VERIFIED") == 0) {
$Data = "Verified\n";
fwrite($Handle, $Data);
if($payment_status == "Completed")
{
$Data = "Completed\n";
fwrite($Handle, $Data);
require_once('./dbconnect.php');
$kkql= mysql_query("SELECT * FROM orders WHERE w='$item_number'");
if(mysql_num_rows($kkql) == 0)
{
exit();
}
mysql_query("UPDATE orders SET paid='1'");
}
}
}
else if (strcmp ($res, "INVALID") == 0) {
// log for manual investigation
}
}
fclose ($fp);
} //This is also causing the error i think as it is red when it click on it, open and closed braces are displayed in green this one in red
fclose($Handle);
?>