0

このコードをいくつかのサイトから取り出して、自分の Web サイトでさまざまな形式で使用しました。しかし、今日、友人から「あなたのウェブサイトから連絡しようとしました」というテキスト メッセージがありました。どれが私の頭の中でアラームを鳴らしました... 「あなたは試しましたか?」だから私は重いテストモードに入りました.フォームが私のアカウントに電子メールで送信されないのは、携帯電話からフォームを送信したときだけです. 最悪の部分は、サイトがフォームが送信されたかのように送信を処理することです. エラーメッセージはありません。コードは次のとおりです。

        $email_to = "info@optiprintdesign.com";
        $email_subject = "Contact Form Message - Opti Print and Design";


        function died($error) {
            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();
        }

        if(!isset($_POST['username']) ||
            !isset($_POST['usercompany']) ||
            !isset($_POST['email']) ||
            !isset($_POST['userphone']) ||
            !isset($_POST['usersite']) ||
            !isset($_POST['userlocation']) ||
            !isset($_POST['comments'])) {
            died('We are sorry, but there appears to be a problem with the form you submitted.');      
        }

        $username = $_POST['username']; 
        $usercompany = $_POST['usercompany']; 
        $email_from = $_POST['email']; 
        $userphone = $_POST['userphone']; 
        $usersite = $_POST['usersite'];    
        $userlocation = $_POST['userlocation'];         
        $comments = $_POST['comments'];

        $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 />';
      }
        $string_exp = "/^[A-Za-z .'-]+$/";
      if(!preg_match($string_exp,$username)) {
        $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($username)."\n";
        $email_message .= "Company: ".clean_string($usercompany)."\n";
        $email_message .= "Email: ".clean_string($email_from)."\n";
        $email_message .= "Phone: ".clean_string($userphone)."\n";
        $email_message .= "Website: ".clean_string($usersite)."\n";
        $email_message .= "Location: ".clean_string($userlocation)."\n";    
        $email_message .= "Comments: ".clean_string($comments)."\n";


    @mail($email_to, $email_subject, $email_message, $headers); 
    ?>
4

1 に答える 1

0

エラー制御演算子を読んでください

PHP がサポートするエラー制御演算子は、アットマーク (@) の 1 つです。PHP で式の先頭に追加すると、その式によって生成される可能性のあるエラー メッセージは無視されます。

于 2013-08-07T17:32:06.347 に答える