我不确定如何提出问题,但我的联系表单包含在我网站的每一页上:http://assistedlivingbridgeton.com/("安排您的旅行"表格)。
目前,这是表单处理代码:
<?php
// if the url field is empty
if(isset($_POST['url']) && $_POST['url'] == ''){
// then send the form to your email
$email = "knunn@standrews1.com, eechols@standrews1.com";
$message = "The following information was submitted from the Schedule Your Tour form on your website:\n
";
$message .= "Name: ".$_REQUEST["Name__1"]."\n\n";
$message .= "Email: ".$_REQUEST["Email__2"]."\n\n";
$message .= "Phone: ".$_REQUEST["Phone__3"]."\n\n";
$message .= "Best date/time: ".$_REQUEST["Best_datetime__4"]."\n\n";
mail( $email, "Bridgeton Assisted Living Tour Form", $message, "From: $email
X-Priority: 1 (Highest)" );
header("Location: http://www.assistedlivingbridgeton.com/thanks.php");
}
// otherwise, let the spammer think that they got their message through
?>
<h1>Thanks</h1>
We'll get back to you as soon as possible
?>
我想要做的是有一个表单处理脚本弹出一个&#34;谢谢你&#34;消息有点像PHP包括那里的旅行表格在侧边栏上。我现在设置它的方式,我必须为我的网站上具有该表单的每个登录页面提供一个流程脚本和一个谢谢页面。我想要一个脚本,它将在感谢消息中弹出表单填写的任何页面。那有意义吗?请帮忙!我知道这是可能的,因为如果你使用Foxy Form或类似的东西,那就是它的作用。
答案 0 :(得分:0)
您可以使用<iframe>
来执行此操作。
您创建一个文件:form.php,编写所有代码,包括谢谢和表单本身,然后只需使用iframe调用此页面。因此,您将此代码添加到您希望表单显示的所有页面,并且结果谢谢您将出现在同一页面中:
<iframe src="form.php" width="150px" height="250px" border="0">
有关iframe的更多信息,请访问:w3schools iframe