0

わかりました、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が上書きされます。フォーム自体にエラーメッセージを表示したいのですが。私はそれを行う方法がわからず、コードに実装できるこの問題に対する良い答えをオンラインで見つけることができませんでした。

誰かがこれに光を当てることができますか?

4

2 に答える 2

1

HTMLフォームをそれ自体にポストバックする必要があります。次に、フォームページの上部に、次のようなチェックを行うifステートメントが必要です。

if(isset($_POST['submit'])) {
 //do validation
 //$errorMessage = "whatever message you want to show the user"
 if ($errors == 0){
  /* Redirect visitor to the thank you page */
  header('Location: thanks.htm');
  exit();
 }
}

フォームを表示する場合:

if(isset($errorMessage))
  print $errorMessage;
于 2012-04-24T08:46:39.910 に答える
0

次の変更を行うことができます。

alert(<?php echo $myError; ?>);

<?php echo $myError; ?>

于 2012-04-24T08:45:13.547 に答える