Я пытаюсь сделать кнопку PayPal с помощью учетной записи песочницы.Когда я создаю эту кнопку, эта кнопка не связывается с PayPal, когда я нажимаю кнопку.Я не могу найти, почему это не работает.Не могли бы вы помочь мне?
$pp_checkout_btn .= '<form action="https://www.sandbox.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="wholee_1330463367_biz@googlemail.com"/>';
//this one using foreach statement.
$pp_checkout_btn .= '<input type="hidden" name="item_name_'.$x.'" value="'.$product_name.'">
<input type="hidden" name="amount_'.$x.'" value="'.$price.'">
<input type="hidden" name="quantity_'.$x.'" value="'.$each_item['quantity'].'">';
//Finish the Paypal Checkout Btn
$pp_checkout_btn .='<input type="hidden" name="notify_url" value="XXX">
<input type="hidden" name="return" value="http://localhost/eshopProject/home.php">
<input type="hidden" name="rm" value="2">
<input type="hidden" name="cbt" value="Return to The Store">
<input type="hidden" name="cancel_return" value="http://localhost/eshopProject/android.php">
<input type="hidden" name="lc" value="UK">
<input type="hidden" name="currency_code" value="GBP">
<input type="image" src="https://www.paypalobjects.com/en_US/GB/i/btn/btn_buynowCC_LG.gif" border="0" name="submit" alt="PayPal — The safer, easier way to pay online.">
</form>';
//in HTML form
<div align="center">
<?php echo $pp_checkout_btn; ?> <br>
<a href ="home.php"> go to home page</a>
</div>