我有一个带有PayPal捐赠按钮的网络表单。 如何设置,以便当用户单击提交按钮时,表单的详细信息将发送到我的电子邮件地址,然后用户被定向到PayPal进行捐赠?
感谢-你。
答案 0 :(得分:3)
<?php
// ...
if(mail([...])) { // try to send email
header("Location: http://PayPal.com/..."); // If mail was sent successfully the user will be redirected
}
else {
// error sending mail
}
?>
请参阅http://php.net/manual/de/function.mail.php了解使用mail() - 函数。
答案 1 :(得分:2)
您可以将表单的action
属性设置为处理请求的php脚本的url。在你的脚本中你调用php mail()
函数,之后你调用php Header('Location: www.paypal.com/etc.../?query=bla&query2=blo&etc')
,它会将用户重定向到paypal。