所以我写了一个包含5个字段的html订单表格(公司名称,名字,姓氏,电子邮件和地址。)http://www.topchoicedata.com/175.php#175
当用户点击提交时,它会将他们带到PayPal付款页面。我使用了一个很酷的脚本,名为paypal payment form来自hotdreamweaver脚本,它将任何表单转换为paypal形式。这会创建一个名为“PPPaymentForm / PPPaymentForm.php”的动作。可以在此链接下找到PHP http://www.cedarpublishing.com/phpcode.txt
我遇到的问题是,paypal无法检索地址,当该人从我这里购买产品时,它从买方端(我)说没有提供送货地址,我必须确认买家。因此,我需要一种方法,以便paypal在提交订单时提取地址字段,如果可能的话,甚至是名字和姓氏。
我读了paypal变量,但我不确定如何嵌入它们。以下是我的表格。
<form action="PPPaymentForm/PPPaymentForm.php" method="post" name="topchoiceform" id="topchoiceform">
<input placeholder="Company Name" type="text" name="companyname" required>
<input placeholder="First Name" type="text" name="firstname" required>
<input placeholder="Last Name" type="text" name="lastname" required>
<input placeholder="Email" type="email" name="email" id="email" required>
<input placeholder="Address" type="text" name="address" required>
<input name="shipping" class="shipping" type="checkbox" id="shipping" value="19.99"/>
<label class="shippingcheck">19.99(Optional Shipping, will be added to total if chosen)</label>
<br>
<br>
<button name="submit" type="submit" id="submit">Pay Now</button>
<input type="hidden" name="hdwtablename" id="hdwtablename" value="1">
<input type="hidden" name="hdwppproductname" id="hdwppproductname" value="Basic Plan $175">
<input type="hidden" name="hdwppamount" id="hdwppamount" value="175">
<input type="hidden" name="hdwppcurrency" id="hdwppcurrency" value="USD">
<input type="hidden" name="hdwpplanguage" id="hdwpplanguage" value="en_US">
<input type="hidden" name="hdwok" id="hdwok" value="http://">
<input type="hidden" name="hdwemail" id="hdwemail" value="mauriceflopez+gmail.com">
<input type="hidden" name="hdwnook" id="hdwnook" value="http://">
<input type="hidden" name="hdwactivation_email" id="hdwactivation_email" value="none">
<input type="hidden" name="plan" id="plan" value="$175">
<input type="hidden" name="shippingchoosen" id="shippingchoosen" value="">
<input type="hidden" name="shippingnumber" id="shippingnumber" value="">
</form>