Paypal与php集成,Code使用1个邮件ID而不是另一个

时间:2017-07-11 05:11:48

标签: php paypal

我在我的网站中集成paypal网关时遇到问题 我测试了很多次并使用了很多代码。

我目前的代码:

<?php
//Include DB configuration file
include 'dbConfig.php';

//Set useful variables for paypal form
$paypalURL = 'https://www.sandbox.paypal.com/cgi-bin/webscr'; //Test PayPal API URL
//$paypalID = 'PayPalMerchant@example.com'; //Business Email
$paypalID = 'intermixitsolution@gmail.com';

?>











<?php
    //Fetch products from the database
    $results = $db->query("SELECT * FROM products");
    while($row = $results->fetch_assoc()){
?>
    <img src="images/<?php echo $row['image']; ?>"/>
    Name: <?php echo $row['name']; ?>
    Price: <?php echo $row['price']; ?>
    <form action="<?php echo $paypalURL; ?>" method="post">
        <!-- Identify your business so that you can collect the payments. -->
        <input type="hidden" name="business" value="<?php echo $paypalID; ?>">
        
        <!-- Specify a Buy Now button. -->
        <input type="hidden" name="cmd" value="_xclick">
        
        <!-- Specify details about the item that buyers will purchase. -->
        <input type="hidden" name="item_name" value="<?php echo $row['name']; ?>">
        <input type="hidden" name="item_number" value="<?php echo $row['id']; ?>">
        <input type="hidden" name="amount" value="<?php echo $row['price']; ?>">
        <input type="hidden" name="currency_code" value="USD">
        
        <!-- Specify URLs -->
        <input type='hidden' name='cancel_return' value='http://intermixitsolution.net/paypal/cancel.php'>
        <input type='hidden' name='return' value='http://intermixitsolution.net/paypal/success.php'>
        
        <!-- Display the payment button. -->
        <input type="image" name="submit" border="0"
        src="https://www.paypalobjects.com/en_US/i/btn/btn_buynow_LG.gif" alt="PayPal - The safer, easier way to pay online">
        <img alt="" border="0" width="1" height="1" src="https://www.paypalobjects.com/en_US/i/scr/pixel.gif" >
    </form>
<?php } ?>

如果我使用这个代码 $ paypalID ='intermixitsolution@gmail.com';

它给出错误: enter image description here

如果我使用

$ paypalID ='PayPalMerchant@example.com';

一切正常

enter image description here

建议我解决方案。谢谢

0 个答案:

没有答案