好吧,當我談到PHP時,我非常無能。我是新手,我設法根據自己的需要調整代碼,但有些事情我無法完成。我有這樣的接觸形式和PHP看起來是這樣的:PHP表單必填字段錯誤消息
<?php
/* Set e-mail recipient */
$myemail = "";
/* Check all form inputs using check_input function */
$naam = check_input($_POST['naam'], "Vul uw naam in");
$bedrijf = check_input($_POST['bedrijf']);
$email = check_input($_POST['email'], "Vul uw emailadres in");
$telefoonnummer = check_input($_POST['telefoonnummer']);
$onderwerp = check_input($_POST['onderwerp'], "Vul een onderwerp in");
$bericht = check_input($_POST['bericht'], "Stel een vraag of plaats een opmerking");
/* If e-mail is not valid show error message */
if (!preg_match("/([\w\-]+\@[\w\-]+\.[\w\-]+)/", $email))
{
show_error("Vul een geldig e-mailadres in");
}
/* Let's prepare the message for the e-mail */
$message = "Beste,
Een bezoeker heeft een bericht gestuurd:
Naam: $naam
E-mail: $email
Onderwerp: $onderwerp
Bericht:
$bericht
Met vriendelijke groet,
$naam
";
/* Send the message using mail() function */
mail($myemail, $onderwerp, $message);
/* Redirect visitor to the thank you page */
header('Location: thanks.htm');
exit();
/* Functions we used*/
function check_input($data, $problem='')
{
$data = trim($data);
$data = stripslashes($data);
$data = htmlspecialchars($data);
if ($problem && strlen($data) == 0)
{
show_error($problem);
}
return $data;
}
function show_error($myError)
{
?>
<html>
<body>
<b>Please correct the following error:</b><br />
<?php echo $myError; ?>
</body>
</html>
<?php
exit();
}
?>
形式有四個必填字段$ NAAM,$電子郵件,$ onderwerp和$ bericht。點擊提交按鈕後,其中任何一個都沒有填寫,它會給出錯誤。到目前爲止這麼好,但它會在新窗口中發佈錯誤,覆蓋contacform。我想要在窗體上顯示錯誤消息。我只是不知道該怎麼做,而且我也無法在網上找到一個很好的答案,可以在我的代碼中實現。
你們中的任何一個人都可以爲此發光?
你的意思是沒有重裝?然後,您需要使用JavaScript進行一些客戶端驗證。但請注意,您應始終在服務器上驗證您的數據,因爲JavaScript可以輕鬆轉換。 – kufi 2012-04-24 08:36:40