0

我有一个联系表格,它会发送一封电子邮件,其中包含已填写的字段。仅当字段为空时,才会出现错误消息,指出缺少字段。问题是错误消息没有显示在页面上。

这是我的 php 页面。

<?php
if (isset($_POST['submit'])) {
$body = '';

$body .= 'Naam: ' . $_POST['naam'] . "\n";
$body .= 'Telefoon: ' . $_POST['telefoon'] . "\n";
$body .= 'Email: ' . $_POST['email'] . "\n";
$body .= 'Bericht: ' . $_POST['bericht'] . "\n";
$body .= 'Adres: ' . $_POST['adres'] . "\n";

if (($_POST['naam'] &&  $_POST['email'] &&  $_POST['bericht'] && $_POST['telefoon'] !=""))
{
mail('someone@mail.com', 'Contact Form', $body, 'From:     no-reply@mycompany.com');
header( "Location: /bedankt.html");
}
else
{
$naamErr = $berichtErr = $emailErr = $telefoonErr = $errormessage = "";
$errormessage = "De volgende velden waren niet ingevuld: ";
if($_POST['naam'] == "")
{
$errormessage .= "naam,";
}
if($_POST['bericht'] == "")
{
$errormessage .= "bericht,";
}
if($_POST['email'] == "")
{
$errormessage .= "email,";
}
if($_POST['telefoon'] == "")
{
$errormessage .= "telefoon";
}

header( "Location: contact.html?errormessage=$errormessage");
}
}


?>

在重定向页面上,我使用 $_GET 函数来调用查询字符串。

<?php print $_GET["errormessage"];?>

我做错了什么,因为没有显示错误消息。

4

2 回答 2

1

<?php print $_GET["errormessage"];?>正如我所看到的,您正在将投掷的标头重定向到“contact.html”,代码如下 header( "Location: contact.html?errormessage=$errormessage");

在 html 页面上我们不能使用 php $_GET["errormessage"]

于 2014-03-13T09:10:36.573 回答
0

您无法进入$_GEThtml 页面。

你需要php页面来做到这一点。

创建contact.php 而不是contact.html。

试试这个:

header( "Location: contact.php?errormessage=$errormessage");
于 2014-03-13T09:05:25.460 回答