我一直在为我们的努力,我只是无法让这个工作,你的帮助非常感谢。
<?php
/*
This first bit sets the email address that you want the form to be submitted to.
You will need to change this value to a valid email address that you can access.
*/
$webmaster_email = "contact@mysite.com";
/*
This bit sets the URLs of the supporting pages.
If you change the names of any of the pages, you will need to change the values here.
*/
$feedback_page = "contact.html";
$error_page = "error.html";
$thankyou_page = "thankyou.html";
/*
This next bit loads the form field data into variables.
If you add a form field, you will need to add it here.
*/
$name = $_REQUEST['name'] ;
$email_address = $_REQUEST['email_address'] ;
$subject = $_REQUEST['subject'] ;
$comments = $_REQUEST['comments'] ;
/*
The following function checks for email injection.
Specifically, it checks for carriage returns - typically used by spammers to inject a CC list.
*/
function isInjected($str) {
$injections = array('(\n+)',
'(\r+)',
'(\t+)',
'(%0A+)',
'(%0D+)',
'(%08+)',
'(%09+)'
);
$inject = join('|', $injections);
$inject = "/$inject/i";
if(preg_match($inject,$str)) {
return true;
}
else {
return false;
}
}
// If the user tries to access this script directly, redirect them to the feedback form,
if (!isset($_REQUEST['email_address'])) {
header( "Location: $feedback_page" );
}
// If the form fields are empty, redirect to the error page.
elseif (empty($email_address) || empty($comments)) {
header( "Location: $error_page" );
}
// If email injection is detected, redirect to the error page.
elseif ( isInjected($email_address) ) {
header( "Location: $error_page" );
}
// If we passed all previous tests, send the email then redirect to the thank you page.
else {
$eml = "Name: ".$name."\r\n"."Subject: ".$subject."\r\n"."Comments: "."\r\n".$comments;
mail( "$webmaster_email", "Visitor Contact",
$eml, "From: $email_address" );
header( "Location: $thankyou_page" );
}
?>
好的,你看到上面的PHP,我想要的只是php文件将错误或成功字符串发送回<h1> header </h1>
中的html,而不是将我重定向到那些页面。
答案 0 :(得分:2)
替换
header();
使用
require_once();
例如
require_once($thankyou_page);
这样做是获取文件的内容并从中读取。如果您需要这样做,则无需重定向。
答案 1 :(得分:1)
如果我正确理解了您的问题,您只需将成功或失败状态传递给您的网页即可。由于您的页面扩展名为.html
,因此无法在其中运行php代码。因此,如果要检查thankyou
或error
页面中的状态,那么好的解决方案是将文件扩展名重命名为.php。
<强> EG 强>
您可以从标题中发送状态
<?php
$thankyou_page = 'thankyou_page.php'; //notice the extension
header("location:$thankyou_page?status=1"); //send status code in your header
在thankyou_page.php
<?php
if( isset($_GET['status']) && $_GET['status'] == 1){
//success
//do whatever you want
}
您无法在.html文件中运行PHP,因为服务器无法将其识别为有效的PHP扩展名,除非您告诉它。为此,您需要在根网站目录中创建一个.htaccess文件并将此行添加到其中:
AddType application/x-httpd-php .htm .html
这将告诉Apache将.htm或.html文件扩展名的文件处理为PHP文件。
来源:How do I add PHP code/file to HTML(.html) files?
警告: 感谢@Fred
关于AddType application / x-httpd-php .htm .html的提及是它将改变“all”.htm / .html文件的功能。所以不是“a”文件,而是“所有”文件.htm / .html
答案 2 :(得分:0)
正如Izodn所说..您可能想要做的是包含错误或成功页面的HTML(error.html,thankyou.html)。
但是,正如我所理解的那样..在那些您希望显示特定错误或成功消息的页面中有一个h1元素。
因此,在上面发布的联系表单处理程序代码中,您需要一个变量来存储您希望在错误/谢谢页面中显示的消息。
类似的东西:
....
$message = "Thank You"; // default message will be "Thank You" if no errors
// If the form fields are empty, redirect to the error page.
elseif (empty($email_address) || empty($comments)) {
$message = "Error: You must enter an e-mail address and comment!";
require_once($error_page);
exit;
}
// If email injection is detected, redirect to the error page.
elseif ( isInjected($email_address) ) {
$message = "Error: Injection attempt discovered!";
require_once($error_page);
exit;
}
... send email
require_once($thankyou_page);
出口在那里,以便在显示错误页面后,不再运行任何代码(否则它将继续发送电子邮件并显示thankyou页面。
所以,然后将你的thankyou.html和error.html页面改为thankyou.php和error.php,这样我们就可以用PHP打印出$ message了;
在这些页面中,您会添加以下内容:
<h1><?php echo $message; ?></h1>
编辑: 刚刚看到你对Izodon的回应。
所以,你不能只是'发送一个字符串'到一个html页面(编辑:这不完全正确,你可以使用javascript来获取结果并设计DOM以显示消息,但这可能不适合这种情况)。包含联系表单的html页面是静态的(不会更改),当您提交表单时,您将被带到包含表单处理代码(您发布的内容)的php页面。现在,一旦你在那个php页面,有两种可能性:要么php输出一些html,要么将用户重定向到另一个页面。
如果你想让它“看起来”就像你没有离开页面一样(点击提交,除了显示的错误信息之外没有任何变化),你会在一个php文件中做所有事情。您可以使用$ _SERVER ['PHP_SELF']将表单提交给自己,并使用$ _POST检测表单是否已提交。如果表单已经提交,则运行处理代码,该代码可能会设置一个带有错误或成功消息的$ message变量。然后你有一个html代码,之后你会用php回显你的$ message变量。