2012-05-21 3 views
6

전자 메일에 데이터를 게시하는 양식을 만들고 싶습니다.양식을 전자 메일로 게시

다음 코드를 찾았지만 정상적으로 작동하지만 불필요한 입력란을 삭제하고 싶습니다. 예 : 작업 코드를 위반하지 않고 '성'및 '전자 메일'필드를 어떻게 삭제할 수 있습니까?

HTML :

<html> 
<head> 
    <title>Форма</title> 
</head> 

<body> 
<form name="contactform" method="post" action="send_form_email.php"> 
    <table width="450px"> 
     <tr> 
      <td valign="top"> 
       <label for="first_name">Name *</label> 
      </td> 
      <td valign="top"> 
       <input type="text" name="first_name" maxlength="50" size="30"> 
      </td> 
     </tr> 

     <tr> 
      <td valign="top"> 
       <label for="telephone">Phone number</label> 
      </td> 
      <td valign="top"> 
       <input type="text" name="telephone" maxlength="30" size="30"> 
      </td> 
     </tr> 
     <tr> 
      <td valign="top"> 
       <label for="comments">Comments *</label> 
      </td> 
      <td valign="top"> 
       <textarea name="comments" maxlength="1000" cols="25" rows="6"></textarea> 
      </td> 
     </tr> 
     <tr> 
      <td colspan="2" style="text-align:center"> 
       <input type="submit" value="Send"> 
      </td> 
     </tr> 
    </table> 
</form> 
</body> 

</html> 

PHP :

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

    // EDIT THE 2 LINES BELOW AS REQUIRED 
    $email_to = "[email protected]"; 
    $email_subject = "Order"; 


    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['first_name']) || 
     !isset($_POST['telephone']) || 
     !isset($_POST['comments'])) { 
     died('We are sorry, but there appears to be a problem with the form you submitted.');  
    } 

    $first_name = $_POST['first_name']; // required 
    $telephone = $_POST['telephone']; // not required 
    $comments = $_POST['comments']; // required 

    $error_message = ""; 
    $email_exp = '/^[A-Za-z0-9._%-][email protected][A-Za-z0-9.-]+\.[A-Za-z]{2,4}$/'; 
    $string_exp = "/^[A-Za-z .'-]+$/"; 
    if(!preg_match($string_exp,$first_name)) { 
    $error_message .= 'The First Name you entered does not appear to be valid.<br />'; 
    } 
    if(strlen($comments) < 2) { 
    $error_message .= 'The Comments you entered do 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 .= "First Name: ".clean_string($first_name)."\n"; 
    $email_message .= "Telephone: ".clean_string($telephone)."\n"; 
    $email_message .= "Comments: ".clean_string($comments)."\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); 
?> 

<!-- include your own success html here --> 

Thank you for contacting us. We will be in touch with you very soon. 

<?php 
} 
?> 

아무 일도 발생하지 않습니다 버튼을 보내기 presing 후. 이메일도없고 메시지도 없습니다. 그냥 페이지를 청소하십시오.

+0

1 단계 ;: 형식. 너는 blockquote가 필요하지 않다 –

답변

4

HTML

<form name="contactform" method="post" action="send_form_email.php"> 
<table width="450px"> 
<tr> 
<td valign="top"> 
    <label for="first_name">Name *</label> 
</td> 
<td valign="top"> 
    <input type="text" name="first_name" maxlength="50" size="30"> 
</td> 
</tr> 
<tr> 
<td valign="top"> 
    <label for="telephone">Telephone Number</label> 
</td> 
<td valign="top"> 
    <input type="text" name="telephone" maxlength="30" size="30"> 
</td> 
</tr> 
<tr> 
<td valign="top"> 
    <label for="comments">Comments *</label> 
</td> 
<td valign="top"> 
    <textarea name="comments" maxlength="1000" cols="25" rows="6"></textarea> 
</td> 
</tr> 
<tr> 
<td colspan="2" style="text-align:center"> 
    <input type="submit" value="Submit"> 
</td> 
</tr> 
</table> 
</form> 

PHP

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

    // EDIT THE 2 LINES BELOW AS REQUIRED 
    $email_to = "[email protected]"; 
    $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['first_name']) || 
     !isset($_POST['telephone']) || 
     !isset($_POST['comments'])) { 
     died('We are sorry, but there appears to be a problem with the form you submitted.');  
    } 

    $first_name = $_POST['first_name']; // required 
    $telephone = $_POST['telephone']; // not required 
    $comments = $_POST['comments']; // required 

    $error_message = ""; 
    $string_exp = "/^[A-Za-z .'-]+$/"; 
    if(!preg_match($string_exp,$first_name)) { 
    $error_message .= 'The Name you entered does not appear to be valid.<br />'; 
    } 
    if(strlen($comments) < 2) { 
    $error_message .= 'The Comments you entered do 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 .= "Name: ".clean_string($first_name)."\n"; 
    $email_message .= "Telephone: ".clean_string($telephone)."\n"; 
    $email_message .= "Comments: ".clean_string($comments)."\n"; 


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

<!-- include your own success html here --> 

Thank you for contacting us. We will be in touch with you very soon. 

<?php 
} 
?> 
+0

어떤 이유로 작동하지 않습니다. 보내기 버튼을 누른 후 빈 페이지 만 표시됩니다. 그리고 새로운 메일받은 편지함이 없습니다. –

+0

호스팅 제공 업체가 공유 서버에있는 경우 호스팅 제공 업체를 사용 중지하는 등 여러 가지 이유로 PHP의 메일 기능이 제대로 작동하지 않을 수 있습니다. 환경에 대한 자세한 정보를 제공해주십시오. 함수의 출력을 인쇄하도록 코드를 편집했습니다. 0으로 표시되면 어떤 이유로 이메일을 전송하지 못했고 문제의 코드에서 다른 부분을 찾아야합니다. – Jeshurun

+0

와우! 이제 작동합니다. 고맙습니다! 불행히도 나는 당신의 대답을 upvote 수 없습니다. 하지만 알다시피, 당신은 나를 많이 도왔습니다) –

0

원하지 않는 입력란에 대한 참조를 모두 삭제하십시오. 오류가 발생하면 질문을 게시 할 때입니다. , 스크립트의 상단에이 줄을 넣어 디버깅하는 동안

또한 오류보고를 추가

error_reporting(E_ALL);

+0

그래서 나는했다. 그리고 그게 효과가 없었습니까. 지금 질문을 편집합니다 –

+0

지금 가지고있는 코드를 게시하고 오류 메시지 – ilanco

+0

@ user1238612를 입력 한 다음 정확히 작동하지 않는 코드를 알려주십시오. 모든 통지, 오류, 아무 일도 일어나지 않습니까? – CodeCaster

관련 문제