わかりました、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、$ email、$ onderwerp、$berichtの4つの必須フィールドがあります。送信ボタンをクリックし、それらのいずれも入力されていない場合、エラーが発生します。これまでのところ良好ですが、新しいウィンドウにエラーが表示され、contacformが上書きされます。フォーム自体にエラーメッセージを表示したいのですが。私はそれを行う方法がわからず、コードに実装できるこの問題に対する良い答えをオンラインで見つけることができませんでした。
誰かがこれに光を当てることができますか?