我正在尝试为使用Movable Type平台的公司撰写联系表单。我正在创建页面模板供他们使用。我95%确定我的PHP代码和我的html对于表是正确的并且相互引用 - 这不是问题的根源。但MT不会自动呈现php。相反,我得到了我所有的PHP文本的巨大块。 html呈现得很好。我不确定如何强迫MT识别php。我找不到直接解决此问题的设置或任何内容。我在MT帮助/常见问题区域中找到的最接近的是here。但我已经尝试使用他们提供的代码<$MTEntryText encode_php="here"$>
,但它完全没有改变页面呈现的方式。下面是我试图使用的php,但我认为这不是问题的根源。我想我应该包括它以防万一。我只是忽略了我需要为MT标记东西的方法吗?我是第一次使用Movable Type平台,第三次使用php,所以请在解释我缺少的东西时随意跟我说话。
<?php
if(isset($_POST['email'])) {
// EDIT THE 2 LINES BELOW AS REQUIRED
$email_to = "blank@mydomain.com";
$email_subject = "Web Contact Response";
function died($error) {
echo "We are very sorry, but there were error(s) found with the form you submitted. ";
echo "These errors appear below.<br /><br />";
echo $error."<br /><br />";
echo "Please go back and fix these errors.<br /><br />";
die();
}
// validation expected data exists
if(!isset($_POST['name']) ||
!isset($_POST['email']) ||
!isset($_POST['telephone']) ||
!isset($_POST['comments'])) {
died('We are sorry, but there appears to be a problem with the form you submitted.');
}
$name = $_POST['name']; // required
$email_from = $_POST['email']; // required
$telephone = $_POST['telephone']; // not required
$comments = $_POST['comments']; // not required
$error_message = "";
$email_exp = '/^[A-Za-z0-9._%-]+@[A-Za-z0-9.-]+\.[A-Za-z]{2,4}$/';
if(!preg_match($email_exp,$email_from)) {
$error_message .= 'The Email Address you entered does not appear to be valid.<br />';
}
$string_exp = "/^[A-Za-z .'-]+$/";
if(!preg_match($string_exp,$first_name)) {
$error_message .= 'The First Name you entered does not appear to be valid.<br />';
}
if(!preg_match($string_exp,$last_name)) {
$error_message .= 'The Last Name you entered does not appear to be valid.<br />';
}
if(strlen($comments) < 2) {
$error_message .= 'The Comments you entered do not appear to be valid.<br />';
}
if(strlen($error_message) > 0) {
died($error_message);
}
$email_message = "Form details below.\n\n";
function clean_string($string) {
$bad = array("content-type","bcc:","to:","cc:","href");
return str_replace($bad,"",$string);
}
$email_message .= "Name: ".clean_string($name)."\n";
$email_message .= "Email: ".clean_string($email_from)."\n";
$email_message .= "Telephone: ".clean_string($telephone)."\n";
$email_message .= "Comments: ".clean_string($comments)."\n";
// create email headers
$headers = 'From: '.$email_from."\r\n".
'Reply-To: '.$email_from."\r\n" .
'X-Mailer: PHP/' . phpversion();
@mail($email_to, $email_subject, $email_message, $headers);
?>
Thank you for contacting us. We will be in touch with you very soon.
<?php
}
?>
答案 0 :(得分:3)
可移动类型逐字输出模板中的文本,但MT模板标签除外,它们会相应地进行处理。
例如,如果您的索引模板仅包含代码:
<?php
<a href="<$mt:BlogURL$>"><$mt:BlogName$></a>
?>
它将在为包含文本的索引模板设置的发布路径中生成文件:
<?php
<a href="http://blogurl.com">My Blog</a>
?>
如果发布的文件是通常通过PHP解析器运行的类型,例如.php
文件,则只有在用户请求文件时,Web服务器才会解析PHP。 Movable Type在发布时不会触及任何PHP代码,也不会触及MT模板标签以外的任何其他内容。其余的只是按原样输出。
根据您的问题,您似乎可能尝试将上述代码放在MT页面的正文中,并在页面模板上使用<$MTEntryText encode_php="here"$>
等MT标记。您将代码描述为在输入时显示在结果页面上,这听起来像我预期的那样。我猜你可能正在以.html
结尾的页面上输出这个PHP,因此PHP没有解析,但我不确定你不知道输入上述代码的确切位置以及模板的发布路径生成结果文件的是。
如果是这种情况,您可以通过将模板发布路径的扩展名更改为.php
来解决您的问题。或者,如果您的模板自动使用系统扩展,您可能需要转到博客设置“常规设置”页面并将“存档设置”下的“文件扩展名”更改为php
。
仅供参考,encode_php
修饰符旨在将数据插入PHP代码时使用,如文档示例所示:$the_title = '<$MTEntryTitle encode_php="q"$>';
。对于您打算运行的代码的一般输出,这不适用于PageBody
或EntryBody
标记,因为它可能最终会逃避您在页面上输入的代码中的各种内容。