0

contact-form.html

<form method="POST" name="contactform" action="contact-form-handler.php"> 
<p>
<label for='name'>Your Name:</label> <br>
<input type="text" name="name">
</p>
<p>
<label for='email'>Email Address:</label> <br>
<input type="text" name="email"> <br>
</p>
<p>
<label for='message'>Message:</label> <br>
<textarea name="message"></textarea>
</p>
<input type="submit" value="Submit"><br>
</form>

contact-form-handler.php

<?php 
$errors = '';
$myemail = 'net.dev@spikyarc.net';
if(empty($_POST['name'])  || 
empty($_POST['email']) || 
empty($_POST['message']))
{
   $errors .= "\n Error: all fields are required";
}

$name = $_POST['name']; 
$email_address = $_POST['email']; 
$message = $_POST['message']; 

if (!preg_match(
  "/^[_a-z0-9-]+(\.[_a-z0-9-]+)*@[a-z0-9-]+(\.[a-z0-9-]+)*(\.[a-z]{2,3})$/i", 
$email_address))
{
    $errors .= "\n Error: Invalid email address";
}

if( empty($errors))
{
$to = $myemail; 
$email_subject = "Contact form submission: $name";
$email_body = "You have received a new message. ".


$headers = "From: $myemail\n"; 
$headers .= "Reply-To: $email_address";

mail($to,$email_subject,$email_body,$headers);
//redirect to the 'thank you' page
header('Location: contact-form-thank-you.html');
  } 
?>

この両方のファイルを wwwroot フォルダーに入れましたが、html フォームを送信するとエラーが発生しますThe page cannot be displayed。問題が見つかりません。私を助けてくれてありがとう。

4

2 に答える 2

0

HTML フォームのアクションを次のように設定します。

contact-form-handler.php

お気に入り:

<form method="POST" name="contactform" action="contact-form-handler.php"> 

更新1:そしてこれをチェックしてください:

変化する

$email_subject = "Contact form submission: $name";

$email_subject = "Contact form submission:" . $name;

更新2:そしてこれも:

$headers = "From: $myemail\n"; 
$headers .= "Reply-To: $email_address";

に:

$headers = "From: " . $myemail . "\n"; 
$headers .= "Reply-To:" . $email_address;

更新 3:

電子メール アドレスを検証します$email_addressが、決して使用しません。

于 2013-09-12T06:52:12.247 に答える
0

アクションでファイル名を確認してください!!

于 2013-09-12T12:25:04.230 に答える