Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个这样的商店:
问题是,简单的刷新会导致每封电子邮件发送一个空表。我怎样才能防止这种情况?我可以在执行邮件功能后以某种方式重定向吗?所以感谢页面在刷新时没有做任何事情?
您可以像这样调用PHPheader()函数:
header()
header('Location: thankyou.php'); exit;
用户将被重定向到感谢页面,并且在那里重新加载不会再次执行您的代码。