if (!$fp) { // HTTP ERROR else { fputs ($fp, $header . $ req); while (!feof($fp)) { $res = fgets ($fp, 1024); if (strcmp ($res, "VERIFIED") == 0) { // check the payment_status is Completed // check that txn_id has not been previously processed // check that receiver_email is your Primary PayPal email // check that payment_amount/payment_currency are correct // process payment } else if (strcmp ($res, "INVALID") == 0) { // log for manual investigation } } fclose ( $fp); } ?>
http://www.bkjia.com/PHPjc/322630.htmlwww.bkjia.comtruehttp: //www.bkjia.com/PHPjc/322630.htmlTechArticlehttp://paypal.ebay.cn/integrationcenter/list__resource_2.html Introduction to Chinese PHP development: http:// www.paypal-china.org/wangzhai/197.html The following is the paypal payment code in ecshop...
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn