2015-09-05 158 views
1

我有3個文本框輸入和一個貝寶形式的貝寶按鈕。PayPal IPN與PHP數據庫集成

<form action="https://www.sandbox.paypal.com/cgi-bin/webscr" method="post" target="_top"> 
    <input type="text" name="a_name" id="name" placeholder="Artist name" /> 
        <input type="email" name="email" id="name" placeholder="Email" /> 
        <input type="text" name="url" id="email" placeholder="Url of your soundcloud track" /> 
<input type="hidden" name="cmd" value="_s-xclick"> 
<input type="hidden" name="hosted_button_id" value="NUYMPHY8BXZGN"> 
<input type="image" src="https://www.sandbox.paypal.com/nl_NL/NL/i/btn/btn_buynowCC_LG.gif" border="0" name="submit" alt="PayPal, de veilige en complete manier van online betalen."> 
<img alt="" border="0" src="https://www.sandbox.paypal.com/nl_NL/i/scr/pixel.gif" width="1" height="1"> 
</form> 

一旦一切都填好了,我們將被重定向到paypal。 我的PayPal IPN監聽器:

<?php 
// CONFIG: Enable debug mode. This means we'll log requests into 'ipn.log' in the same directory. 
// Especially useful if you encounter network errors or other intermittent problems with IPN (validation). 
// Set this to 0 once you go live or don't require logging. 
define("DEBUG", 1); 
// Set to 0 once you're ready to go live 
define("USE_SANDBOX", 1); 
define("LOG_FILE", "./ipn.log"); 
// Read POST data 
// reading posted data directly from $_POST causes serialization 
// issues with array data in POST. Reading raw POST data from input stream instead. 
$raw_post_data = file_get_contents('php://input'); 
$raw_post_array = explode('&', $raw_post_data); 
$myPost = array(); 
foreach ($raw_post_array as $keyval) { 
    $keyval = explode ('=', $keyval); 
    if (count($keyval) == 2) 
     $myPost[$keyval[0]] = urldecode($keyval[1]); 
} 
// read the post from PayPal system and add 'cmd' 
$req = 'cmd=_notify-validate'; 
if(function_exists('get_magic_quotes_gpc')) { 
    $get_magic_quotes_exists = true; 
} 
foreach ($myPost as $key => $value) { 
    if($get_magic_quotes_exists == true && get_magic_quotes_gpc() == 1) { 
     $value = urlencode(stripslashes($value)); 
    } else { 
     $value = urlencode($value); 
    } 
    $req .= "&$key=$value"; 
} 
// Post IPN data back to PayPal to validate the IPN data is genuine 
// Without this step anyone can fake IPN data 
if(USE_SANDBOX == true) { 
    $paypal_url = "https://www.sandbox.paypal.com/cgi-bin/webscr"; 
} else { 
    $paypal_url = "https://www.paypal.com/cgi-bin/webscr"; 
} 
$ch = curl_init($paypal_url); 
if ($ch == FALSE) { 
    return FALSE; 
} 
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); 
if(DEBUG == true) { 
    curl_setopt($ch, CURLOPT_HEADER, 1); 
    curl_setopt($ch, CURLINFO_HEADER_OUT, 1); 
} 
// CONFIG: Optional proxy configuration 
//curl_setopt($ch, CURLOPT_PROXY, $proxy); 
//curl_setopt($ch, CURLOPT_HTTPPROXYTUNNEL, 1); 
// Set TCP timeout to 30 seconds 
curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 30); 
curl_setopt($ch, CURLOPT_HTTPHEADER, array('Connection: Close')); 
// CONFIG: Please download 'cacert.pem' from "http://curl.haxx.se/docs/caextract.html" and set the directory path 
// of the certificate as shown below. Ensure the file is readable by the webserver. 
// This is mandatory for some environments. 
//$cert = __DIR__ . "./cacert.pem"; 
//curl_setopt($ch, CURLOPT_CAINFO, $cert); 
$res = curl_exec($ch); 
if (curl_errno($ch) != 0) // cURL error 
    { 
    if(DEBUG == true) { 
     error_log(date('[Y-m-d H:i e] '). "Can't connect to PayPal to validate IPN message: " . curl_error($ch) . PHP_EOL, 3, LOG_FILE); 
    } 
    curl_close($ch); 
    exit; 
} else { 
     // Log the entire HTTP response if debug is switched on. 
     if(DEBUG == true) { 
      error_log(date('[Y-m-d H:i e] '). "HTTP request of validation request:". curl_getinfo($ch, CURLINFO_HEADER_OUT) ." for IPN payload: $req" . PHP_EOL, 3, LOG_FILE); 
      error_log(date('[Y-m-d H:i e] '). "HTTP response of validation request: $res" . PHP_EOL, 3, LOG_FILE); 
     } 
     curl_close($ch); 
} 
// Inspect IPN validation result and act accordingly 
// Split response headers and payload, a better way for strcmp 
$tokens = explode("\r\n\r\n", trim($res)); 
$res = trim(end($tokens)); 
if (strcmp ($res, "VERIFIED") == 0) { 
    $a_name = $_POST['a_name']; 

$email = $_POST['email']; 
$url = $_POST['url']; 
    // Insert your actions here 
require('connect.php'); 

$sql = "INSERT INTO reposts (a_name, url, email) VALUES ('".$a_name."','".$email."','".$url."')"; 
mysqli_query($conn, $sql); 


    if(DEBUG == true) { 
     error_log(date('[Y-m-d H:i e] '). "Verified IPN: $req ". PHP_EOL, 3, LOG_FILE); 
    } 
} else if (strcmp ($res, "INVALID") == 0) { 
    // log for manual investigation 
    // Add business logic here which deals with invalid IPN messages 
    if(DEBUG == true) { 
     error_log(date('[Y-m-d H:i e] '). "Invalid IPN: $req" . PHP_EOL, 3, LOG_FILE); 
    } 
} 
?> 

當我模擬IPN監聽器是工作,我得到插入值(空着,當然,因爲我們沒有在$ a_name $電子郵件等),它通過支付數據庫。 當我在網站上採取步驟時,這也會發生。 文本框中的值已丟失。我無法在我的payment.php(聽衆)中找回它們。

付款成功後,我應該怎麼做才能獲取值並將它們插入到數據庫中?我只是將空值插入到數據庫中。


解決!:

我所做的是我把$ _ POST值通過IPN監聽支付給我的電子郵件後。 我收到的是什麼這樣的:

:11: 「verify_sign」; S: 「AnNMT7nRteKS2auTkxdsRz9rRvvPAWwWAsbZm21nF1AGuSAtUwoLbcd」:56; S:11: 「PAYER_EMAIL」; S:20: 「[email protected]」 ; s:12:「option_name1」; s:8:「segujejg」; s:12:「option_name2」; s:16:「[email protected]」; s:12:「option_name3」; s:9: 「jsipegjie 」; S:6:「 txn_id」; S:17: 「61S77153EE2897129」; S:12:「payment_type

它成功接收的值,所以我不得不做的唯一的事情就是更換$_POST['a_name']$_POST['option_name1']從Paypal退貨 現在有效

+0

如果您解決了您的問題,請考慮添加解決方案作爲答案。 – dakab

回答

1

Paypal IPN有一個custom變量,您可以使用它將自定義值發送到PayPal,PayPal會將其發回給您。但它只有一個字段,限制爲255個字符。 https://developer.paypal.com/docs/classic/ipn/integration-guide/IPNandPDTVariables/

所以在你的情況下,也許你可以嘗試在一個頁面上的形式。在用戶提交「名稱」,「電子郵件」和「網址」後,將這些插入到數據庫中,獲取該行的ID,然後在下一個屏幕上插入貝寶按鈕,使用該行的ID填充「自定義」隱藏輸入字段,你的IPN監聽器會收到後面的id(在custom var中),所以你可以檢查數據庫。

0

解決!:

我所做的是我把$ _ POST值通過IPN監聽支付給我的電子郵件後。我收到了這樣的事情:

:11: 「verify_sign」; S:56: 「AnNMT7nRteKS2auTkxdsRz9rRvvPAWwWAsbZm21nF1AGuSAtUwoLbcd。」; S:11: 「PAYER_EMAIL」; S:20: 「[email protected]」; S:12: 「option_name1」; S:8: 「segujejg」; S:12: 「option_name2」; S:16: 「[email protected]」; S:12: 「option_name3」; S:9:「jsipegjie 「; s:6:」txn_id「; s:17:」61S77153EE2897129「; s:12:」payment_type

它成功地收到了值,所以我唯一需要做的就是將$ _POST ['a_name '] with $ _POST ['option_name1']因爲它從PayPal返回,它現在可以工作