我有一个表单和自定义PayPal按钮,但如何将价值/价格变量传递给PayPal?
<form action="https://www.paypal.com/cgi-bin/webscr" method="post">
<input type="hidden" name="cmd" value="_s-xclick">
<input type="hidden" name="hosted_button_id" value="ZEFZFYBY2SZB8">
<input type="image" src="https://www.paypal.com/en_US/i/btn/btn_paynowCC_LG.gif" border="0" name="submit" alt="PayPal - The safer, easier way to pay online!">
<img alt="" border="0" src="https://www.paypal.com/en_US/i/scr/pixel.gif" width="1" height="1">
</form>
我有一个变量$total = "238.00";
答案 0 :(得分:23)
之前的代码对我不起作用。经过深思熟虑之后我终于想通了你必须进入PayPal并在创建按钮代码的第2步确保你点击了unhosted按钮,然后复制未加密的按钮代码,这将给你这样的东西(我把我的空白安全的商业价值):
<form action="https://www.paypal.com/cgi-bin/webscr" method="post">
<input type="hidden" name="cmd" value="_xclick">
<input type="hidden" name="business" value="XXX">
<input type="hidden" name="lc" value="CA">
<input type="hidden" name="item_name" value="Tangled Roots">
<input type="hidden" name="button_subtype" value="services">
<input type="hidden" name="no_note" value="0">
<input type="hidden" name="cn" value="Add special instructions to the seller">
<input type="hidden" name="no_shipping" value="2">
<input name="amount" value="16.99">
<input type="hidden" name="currency_code" value="CAD">
<input type="hidden" name="bn" value="PP-BuyNowBF:btn_buynowCC_LG.gif:NonHosted">
<input type="image" src="https://www.paypalobjects.com/en_US/i/btn/btn_buynowCC_LG.gif" border="0" name="submit" alt="PayPal - The safer, easier way to pay online!">
<img alt="" border="0" src="https://www.paypalobjects.com/en_US/i/scr/pixel.gif" width="1" height="1">
</form>
此代码创建一个按钮,用户可以在其中输入金额,默认情况下从16.99开始,但您可以轻松地将其替换为PHP变量。
答案 1 :(得分:14)
为金额添加一个隐藏字段
<input type="hidden" name="amount" value="<?php echo $total; ?>">
答案 2 :(得分:12)
我尝试了以上所有的失败。我发现这是PayPal website的答案。
<form name="_xclick" action="https://www.paypal.com/cgi-bin/webscr" method="post">
<input type="hidden" name="cmd" value="_xclick">
<input type="hidden" name="business" value="me@mybusiness.com">
<input type="hidden" name="currency_code" value="USD">
<input type="hidden" name="item_name" value="Teddy Bear">
<input type="hidden" name="amount" value="12.99">
<input type="image" src="http://www.paypalobjects.com/en_US/i/btn/btn_buynow_LG.gif" border="0" name="submit" alt="Make payments with PayPal - it's fast, free and secure!">
</form>
测试一下,您就会明白它是如何运作的......将业务更改为您要支付的人的电子邮件地址等。
答案 3 :(得分:5)
以下是2013版:创建一个按钮,当您进入第2步时,取消选中该框,继续执行步骤3,然后创建按钮。获得代码后,它将如下所示:
<form action="https://www.paypal.com/cgi-bin/webscr" method="post" target="_top">
<input type="hidden" name="cmd" value="_xclick">
<input type="hidden" name="business" value="XXXXXXXX">
<input type="hidden" name="lc" value="US">
<input type="hidden" name="item_name" value="Payments">
<input type="hidden" name="amount" value="100.00">
<input type="hidden" name="currency_code" value="USD">
<input type="hidden" name="button_subtype" value="services">
<input type="hidden" name="no_note" value="0">
<input type="hidden" name="cn" value="Add special instructions to the seller:">
<input type="hidden" name="no_shipping" value="2">
<input type="hidden" name="rm" value="1">
<input type="hidden" name="return" value="http://YOURSITE.com/">
<input type="hidden" name="cancel_return" value="http://YOURSITE.com/payments.html">
<input type="hidden" name="bn" value="PP-BuyNowBF:btn_buynowCC_LG.gif:NonHostedGuest">
<input type="image" src="https://www.paypalobjects.com/en_US/i/btn/btn_buynowCC_LG.gif" border="0" name="submit" alt="PayPal - The safer, easier way to pay online!">
<img alt="" border="0" src="https://www.paypalobjects.com/en_US/i/scr/pixel.gif" width="1" height="1">
</form>
您的“商家”价值不会是XXXXXXXX,因此请务必留下Paypal为您提供的价值。您还可以设置取消和返回URL。
对于更高级的PHP用户: 我实际上设置了一个PHP字符串,它很棒!例如,见下文:
https://www.paypal.com/cgi-bin/webscr?cmd=_xclick&businesss=XXXXXXXXX&lc=US&item_name=$mydescription&amount=$myprice&........
等等......正如你所看到的,$ mydescription是一个PHP变量,$ myprice是一个PHP变量。我所做的是设置一个HTML表单来收集数据并将该表单用作付款处理表单。一旦用户点击提交,我就会将其转到PHP页面,用作邮件程序,数据库插入,自动回复,最后是Header重定向。重定向的URL是Paypal URL,字符串中包含变量!这个帖子实际上帮助我找到了正确的Paypal按钮代码,这样字符串就可以在价格变化时正常工作!仅供参考 - 如果您是初学PHP用户,则不会在字符串中使用图像字段。只有URL,然后是隐藏的名称和值。
答案 4 :(得分:3)
我找到了解决方案:
<input type="hidden" name="cmd" value="_s-xclick">
需要更改为
<input type="hidden" name="cmd" value="_xclick">
第一个加密表单发送的数据 - 这导致了我的结帐问题。
答案 5 :(得分:1)
此处允许用户输入价格和参考。
注意:您需要将商家从shop@ekerner.com更改为您的PayPal电子邮件地址,但如果您不这样做,我可以将其罚款,因为这只意味着我会收到您的付款。
您可能还想更改currency_code和lc以适合您的语言区域...
<form action="https://www.paypal.com/cgi-bin/webscr" method="post">
<fieldset>
<input type="hidden" name="cmd" value="_xclick" />
<input type="hidden" name="business" value="shop@ekerner.com" />
<input type="hidden" name="lc" value="AU" />
<input type="hidden" name="item_name" value="Payment" />
<input type="hidden" name="item_number" value="P1" />
<input type="hidden" name="currency_code" value="AUD" />
<input type="hidden" name="button_subtype" value="services" />
<input type="hidden" name="no_note" value="0" />
<input type="hidden" name="cn" value="Comments" />
<input type="hidden" name="no_shipping" value="1" />
<input type="hidden" name="rm" value="1" />
<input type="hidden" name="return" value="http://www.ekerner.com/payments/?payment=success" />
<input type="hidden" name="cancel_return" value="http://www.ekerner.com/payments/?payment=cancelled" />
<input type="hidden" name="bn" value="PP-BuyNowBF:btn_paynowCC_LG.gif:NonHostedGuest" />
<table>
<tr><td style="padding:0 5px 5px 0;">Amount AUD</td><td style="padding:0 5px 5px 0;"><input type="text" name="amount" maxlength="200" /></td></tr>
<tr><td style="padding:0 5px 5px 0;"><input type="hidden" name="on0" value="Reference" />Reference</td><td style="padding:0 5px 5px 0;"> <input type="text" name="os0" maxlength="200" /></td></tr>
<tr><td> </td><td style="padding:0 5px 5px 0;">
<input style="position:relative; left:-10px; background:#ffffff; border:0;" type="image" src="https://www.paypalobjects.com/en_AU/i/btn/btn_paynowCC_LG.gif" name="submit" alt="PayPal . The safer, easier way to pay online." />
<img alt="" style="border:0;" src="https://www.paypalobjects.com/en_AU/i/scr/pixel.gif" width="1" height="1" />
</td></tr>
</table>
</fieldset>
</form>
答案 6 :(得分:0)
不幸的是,在撰写本文时,此问题的所有其他答案都是错误的 - 即如果您正在尝试更改托管按钮的价格;这就是问题所在。
正确的方法如下:
重要提示:当您更新按钮详细信息时,它不会针对该用户会话进行更新,而是在您的PayPal帐户中更新 - 因此新名称/价格等会影响所有试图使用它的用户。
另外,在更改托管按钮的内容时,建议您在创建按钮时将所有按钮的详细信息传递给它;举例来说,如果你遗漏了一个项目名称,项目名称将为空白,Paypal将允许用户进行设置。
就此而言,我们将继续......
我个人从这门课开始:
<?php
class Paypal
{
/**
* Last error message(s)
* @var array
*/
protected $_errors = array();
/**
* API Credentials
* Use the correct credentials for the environment in use (Live / Sandbox)
* @var array
*/
protected $_credentials = array(
'USER' => 'seller_1297608781_biz_api1.lionite.com',
'PWD' => '1297608792',
'SIGNATURE' => 'A3g66.FS3NAf4mkHn3BDQdpo6JD.ACcPc4wMrInvUEqO3Uapovity47p',
);
/**
* API endpoint
* Live - https://api-3t.paypal.com/nvp
* Sandbox - https://api-3t.sandbox.paypal.com/nvp
* @var string
*/
protected $_endPoint = 'https://api-3t.sandbox.paypal.com/nvp';
/**
* API Version
* @var string
*/
protected $_version = '74.0';
/**
* Make API request
*
* @param string $method string API method to request
* @param array $params Additional request parameters
* @return array / boolean Response array / boolean false on failure
*/
public function request($method, $params = array())
{
$this->_errors = array();
if (empty($method)) { //Check if API method is not empty
$this->_errors = array('API method is missing');
return false;
}
//Our request parameters
$requestParams = array(
'METHOD' => $method,
'VERSION' => $this->_version
) + $this->_credentials;
//Building our NVP string
$request = http_build_query($requestParams + $params);
//cURL settings
$curlOptions = array(
CURLOPT_URL => $this->_endPoint,
CURLOPT_VERBOSE => 1,
CURLOPT_SSL_VERIFYPEER => true,
CURLOPT_SSL_VERIFYHOST => 2,
CURLOPT_CAINFO => dirname(__FILE__) . '/cacert.pem', //CA cert file
CURLOPT_RETURNTRANSFER => 1,
CURLOPT_POST => 1,
CURLOPT_POSTFIELDS => $request
);
$ch = curl_init();
curl_setopt_array($ch, $curlOptions);
//Sending our request - $response will hold the API response
$response = curl_exec($ch);
//Checking for cURL errors
if (curl_errno($ch)) {
$this->_errors = curl_error($ch);
curl_close($ch);
return false;
//Handle errors
} else {
curl_close($ch);
$responseArray = array();
parse_str($response, $responseArray); // Break the NVP string to an array
return $responseArray;
}
}
}
?>
信用: https://www.smashingmagazine.com/2011/09/getting-started-with-the-paypal-api/
然后我做了以下事情:
include(dirname(__FILE__) . '/includes/paypal.class.php');
$paypal = new Paypal();
// Set our method
$method = 'BMUpdateButton';
// Set our params
$params = array(
'HOSTEDBUTTONID' => 'your_button_id',
'BUTTONTYPE' => 'BUYNOW',
'BUTTONSUBTYPE' => 'SERVICES',
'L_BUTTONVAR0' => 'item_name=Your Description',
'L_BUTTONVAR1' => 'amount=999.00',
'L_BUTTONVAR2' => 'currency_code=AUD',
'L_BUTTONVAR3' => 'cancel_return=http://www.example.com/cancel.html',
'L_BUTTONVAR4' => 'return=http://www.example.com/success.html'
);
// Make request to change button details
$result = $paypal->request($method, $params);
请注意,虽然Paypal表示BUTTONSUBTYPE
是可选的,但如果您不加错,则可能会收到错误。
不幸的是,Paypal文档并不是很清楚,也没有提供最好的例子,所以我希望这可以节省其他人花费很多时间来查找如何做到这一点。
答案 7 :(得分:-1)
虽然是一个老帖子,但在搜索时遇到了我。第一页上没有任何地方可以回答这个问题!读了大约10个小时,我设法做了一个有效的例子。但请记住,paypal不断变化,所以在某些时候这个解决方案将不再适用。
首先要做的事情。您不能拥有商品的变量价格值。因此,第一个解决方法是发送请求,就好像商品是购物车中的商品一样!是的,聪明的举动:)
<form action="https://www.paypal.com/cgi-bin/webscr" method="post">
<input type="hidden" name="cmd" value="_cart">
<input type="hidden" name="upload" value="1">
<input type="hidden" name="business" value="XVR95QDG6M53J">
<input type="hidden" name="item_name_1" value="This is the name of what you are selling">
<input type="hidden" name="amount_1" value="<?php echo $total_cost; ?>">
<input type="hidden" name="currency_code" value="the currency code">
<input type="hidden" name="lc" value="if you dont need delete">
<input type="hidden" name="shopping_url" value="link to your shop or cart on your website">
<input type="hidden" name="retun" value="URL the user returns if payment is OK">
<input type="hidden" name="cancel_return" value="URL the user returns if payment is canceled">
<input type="submit" class="read-more-btn4" value="Text of [read more] button">
</form>
您可能希望将business
的值更改为您的值。但我真的不在乎:)。