我想添加一个链接到php文档,回到前一页


I want to add a link to php document that goes back to previous page

我正在使用PHP制作电子邮件表单,当您不填写所需字段时,您将被发送到另一个页面,您需要纠正错误。

在这些错误的底部,我想做返回链接,但我不知道我做错了什么,因为Dreamweaver在我写的那行显示了一个错误。下面是代码,我将用注释标记这一行。

<?php
if(isset($_POST['email'])) {
$email_to = "example@example.com";
$email_subject = "website html form submissions";
function died($error) {
    echo "Atsiprašome, bet yra klaidų Jūsų užpildytoje formoje.<br /><br /> ";
    echo $error."<br /><br />";
    echo "Grįžkite ir ištaisykite klaidas.<br /><br />";
    echo "<a href="contacts.html">Atgal</a>";  //this is the line
    die();
}

if(!isset($_POST['first_name']) || !isset($_POST['last_name']) || !isset($_POST['email']) || !isset($_POST['telephone']) || !isset($_POST['comments'])) {
    died('Atsiprašome, bet yra klaidų Jūsų užpildytoje formoje.');       
}
$first_name = $_POST['first_name']; // required
$last_name = $_POST['last_name'];   // required
$email_from = $_POST['email'];      // required
$telephone = $_POST['telephone'];   // not required
$comments = $_POST['comments'];     // 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 .= 'Neteisingai įvestas el. paštas.<br />';
}
$string_exp = "/^[A-Za-z .'-]+$/";
if(!preg_match($string_exp,$first_name)) {
    $error_message .= 'Neteisingai įvestas vardas.<br />';
}
if(!preg_match($string_exp,$last_name)) {
    $error_message .= 'Neteisingai įvesta pavardė.<br />';
}
if(strlen($comments) < 2) {
    $error_message .= 'Neteisingai įvesta žinutė.<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 .= "First Name: ".clean_string($first_name)."'n";
$email_message .= "Last Name: ".clean_string($last_name)."'n";
$email_message .= "Email: ".clean_string($email_from)."'n";
$email_message .= "Telephone: ".clean_string($telephone)."'n";
$email_message .= "Comments: ".clean_string($comments)."'n";

$headers = 'From: '.$email_from."'r'n".'Reply-To: '.$email_from."'r'n" .'X-Mailer: PHP/' . phpversion();
@mail($email_to, $email_subject, $email_message, $headers);  
?>
<!-- place your own success html below -->
Ačiū už Jūsų žinutę.
<?php
}
die();
?>
echo "<a href="contacts.html">Atgal</a>";  //this is the line

您在这里所做的是在<a href=结束字符串字面值。

你需要做的就是把它改成:

echo "<a href='contacts.html'>Atgal</a>";

在PHP中,引号用于标记字符串的开始和结束。您可以使用单引号或双引号。

'This is a string'

"This too!"

如您所见,您可以使用单引号或双引号。但是,我们也希望在字符串中出现引号。那么我们该如何处理呢?

嗯,一个选择是使用Chris Cooney的答案,并确保字符串中的引号与标记开始和结束的引号不同:

"I'm a string"

'"Murder," she wrote'

这两个都是有效的

但是,当你需要在字符串中使用与你打开它时相同的类型的引号时,该怎么办呢?例如,也许你在字符串中需要这两种类型。在这种情况下,必须转义引号。这意味着在它们前面添加'

'I''m a valid string!'

基于此,您可以在这一行修复您的问题:

echo "<a href="contacts.html">Atgal</a>";

echo "<a href='contacts.html'>Atgal</a>";
echo "<a href='"contacts.html'">Atgal</a>";
echo '<a href=''contacts.html''>Atgal</a>';