如果表单(在通过 iFrame 显示的另一个网站上已发送),允许用户继续
If the form (on another website displayed through an iFrame has been sent), allow the user to proceed
站点 1 有联系表。
站点 2 的下一页内容只有来宾用户在站点 1 上填写并发送表格后才能访问。
有人知道如何实现吗?
只需在接收表单数据的 php 文件中写入
if(isset($_POST['submit']))
{
// do whatever you want
header('Location: http://www.Your_site2_address.com');
}
站点 1 有联系表。
站点 2 的下一页内容只有来宾用户在站点 1 上填写并发送表格后才能访问。
有人知道如何实现吗?
只需在接收表单数据的 php 文件中写入
if(isset($_POST['submit']))
{
// do whatever you want
header('Location: http://www.Your_site2_address.com');
}