私はPHPが初めてで、詳細をPayPalに送信する小さなショッピングカートを作成しましたが、これは機能していますが、顧客に配送先住所を記入してもらい、チェックアウトをクリックしたときにメールアドレスにメールで送信してもらいたいですボタン。
このフォームが必要な理由は、州に VIC を選択すると送料が無料になり、$_SESSION['shipping_cost'] に費用がかかるためです。
配送先住所フォームとペイパルを組み合わせることができるように、どうにかして行動する必要がありますか?
<form action="https://www.sandbox.paypal.com/cgi-bin/webscr" method="post">
<textarea name='message' rows='15' cols='40'>
</textarea><br>
<input type="hidden" name="cmd" value="_cart">
<input type="hidden" name="upload" value="1">
<input type="hidden" name="business" value="email@email.com">
<?php $this->pay_pal(); ?>
<input type="hidden" name="item_name" value="Item Name">
<input type="hidden" name="currency_code" value="AUD">
<input type="hidden" name="amount" value="<?php echo $total; ?>">
<input type="image" onclick="return checkConditions();" src="http://www.paypal.com/en_US/i/btn/x-click-but03.gif" name="submit" alt="Make payments with PayPal - it's fast, free and secure!">
<input type="hidden" name="return" value="http://www.somewhere.com">
</form>