0

これまでのところ、基本的なテキスト入力があります。

 <form name="contact" method="post" action="contact.php">
<div id="subscribe">
    <input type="text" placeholder="Enter your email address...">
    <input type="submit" value="Submit">
    <div class="clear"></div>
</div>

これは私の「近日公開」ランディング ページのコードです。私が知りたくないのは、入力した電子メールをどこかに送信してアクセスできるようにする方法です。PHP を追加しようとしましたが、失敗しました (私は Web 開発にネットです)。

これは私が使用しようとしているPHPコードです

<?php
if(isset($_POST['email'])) {

// EDIT THE 2 LINES BELOW AS REQUIRED
$email_to = "you@yourdomain.com";
$email_subject = "Your email subject line";


function died($error) {
    // your error code can go here
    echo "We are very sorry, but there were error(s) found with the form you submitted. ";
    echo "These errors appear below.<br /><br />";
    echo $error."<br /><br />";
    echo "Please go back and fix these errors.<br /><br />";
    die();
}

// validation expected data exists
if  !isset($_POST['email']) ||
   died('We are sorry, but there appears to be a problem with the form you submitted.');       
}

$email_from = $_POST['email']; // required

  $error_message = "";
$email_exp = '/^[A-Za-z0-9._%-]+@[A-Za-z0-9.-]+\.[A-Za-z]{2,4}$/';
  if(!preg_match($email_exp,$email_from)) {
$error_message .= 'The Email Address you entered does not appear to be valid.<br />';
  }
  if(strlen($error_message) > 0) {
died($error_message);
  }
   $email_message = "Form details below.\n\n";

function clean_string($string) {
  $bad = array("content-type","bcc:","to:","cc:","href");
  return str_replace($bad,"",$string);
}

$email_message .= "Email: ".clean_string($email_from)."\n";

 // create email headers
$headers = 'From: '.$email_from."\r\n".
'Reply-To: '.$email_from."\r\n" .
 'X-Mailer: PHP/' . phpversion();
  @mail($email_to, $email_subject, $email_message, $headers);  
   ?>
   <?php
    }
     ?>

いつ試しても何も起こりません。これを行うより短い方法を知っている場合は、私に知らせてください。ありがとう!

4

2 に答える 2

0

人々が言っ​​ていることは次のとおりです。

//<form method="post"> 
// Why do you have two form starts? Get rid.


<form name="contact" method="post" action="contact.php"> 
    <div id="subscribe"> 
        // you have to give the INPUT a name attribute. 
        // If you want to access the data using $_POST['email'], 
        // then you have to name it 'email'
        <input name="email" type="text" placeholder="Enter your email address...">
        <input type="submit" value="Submit"> 
        <div class="clear"></div> 
    </div> 
</form>
于 2013-10-16T02:35:24.130 に答える