0

私は joomla で作業しています。custom contact form 作成したものがhtml codeあります。ユーザーがsubmitボタンをクリックすると、すべてのテキストボックスの値emailを取得する必要があります。

だから私はそのために書きphp codeます。

たとえば、以下のようなphpコードのhtmlコードには2つのフィールドしかありません

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


    $email_to = "test@gmail.com";
    $email_subject = "mail";


    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();
    }

    // add  validation for other fields if needed 
    if(!isset($_POST['Applicant_name']) ||
        !isset($_POST['email']))) {
        died('We are sorry, but there appears to be a problem with the form you submitted.');       
    }

     //all fields with there name to send in email
    $name = $_POST['name']; // required
    $email= $_POST['email']; // required


    $error_message = "";

  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);
    }

     //show all fields in message body
    $email_message .= "Applicant_name: ".clean_string($Applicant_name)."\n";
    $email_message .= "name: ".clean_string($dob)."\n";
    $email_message .= "email: ".clean_string($sex)."\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);  
?>

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

<?php
}
?>

このコードをJoomlaのどこにどのように貼り付ける必要がありますか?

4

3 に答える 3

1

独自のコードを使用することにした場合は、「ADMIN end」からモジュールに移動します。[新規] をクリックしてから、[カスタム html] タイプを選択し、コードを貼り付けるだけです。モジュールに名前を付けて、必要な場所に公開します。

于 2016-06-08T12:15:39.420 に答える
0

コアコンタクトフォームを使用して、いくつかのフィールドを追加するプラグインを作成してみませんか.

于 2013-09-30T22:09:48.660 に答える