http://makeupbysherry.com/contact.phpPHPのお問い合わせフォーム
ネットワークソリューションに取り組んでいないお問い合わせフォームは、フォームからのE-メールが届か作業していないしていないようです。私はいくつかの電子メールを試みました、そして、ホストはNetwork Solutionsにあります。私はGoDaddy上のテストサーバー上にこのサイトを持っていましたが、今はNetsolで動作しません。
問題が何であるか分かりませんが、このサイトは今朝のWindowsからUNIXへの移行が行われており、これ以外は起動しているようです。何が起きているのか?ありがとう!
ブライアン
更新:あなたは通常、SMTP接続の詳細を使用してPHPのコンタクトフォームを設定する必要が
<?php
/* Set e-mail recipient */
$myemail = "[email protected]";
/* Check all form inputs using check_input function */
$name = check_input($_POST['name'], "Enter your name");
$email = check_input($_POST['email']);
$subject = check_input($_POST['subject'], "Write a subject");
$message = check_input($_POST['message'], "Write your message");
$check .= implode(', ', $_POST['check']);
/* If e-mail is not valid show error message */
if (!preg_match("/([\w\-]+\@[\w\-]+\.[\w\-]+)/", $email))
{
show_error("E-mail address not valid");
}
/* If URL is not valid set $website to empty */
if (!preg_match("/^(https?:\/\/+[\w\-]+\.[\w\-]+)/i", $website))
{
$website = '';
}
/* Let's prepare the message for the e-mail */
$message = "Hello!
Your contact form has been submitted by:
Name: $name
E-mail: $email
Subject: $subject
Message: $message
Description: $check
End of message
";
/* Send the message using mail() function */
mail($myemail, $subject, $message);
/* Redirect visitor to the thank you page */
header('Location: thanks.php');
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();
}
?>
ゴーserverfault.com – stillstanding
へのコードを投稿してみてください、私たちはそう言うことができません。 – DampeS8N
まだphp.iniのものが動いていないように見せてくれる人を手伝ってもらおうとしています。私はそれを試みたがまだメッセージを取得していない。ヘッダーを含めるとこれに何か影響がありますか? Netsolの男はそう思っていたようだ... – XXXSkaPunk