douye6812 2014-04-29 15:01
浏览 27

为什么我的文件以二进制形式出现?

I have a html form that i want to allow file uploads. I can get it to send over the correct information but instead of receiving the file in its format i.e. jpg or pdf, i simply get an email full of binary. Can anyone shed some light onto why this is happening ?

My html

 <form name="htmlform" method="post" enctype="multipart/form-data" action="../html_form_send.php">
            <table width="450px">
            </tr>
            <tr>
             <td valign="top">
             <label for="first_name">First Name *</label>
            </td>
             <td valign="top">
             <input  type="text" name="first_name" maxlength="50" size="30">
            </td>
            </tr>

            <tr>
            <td valign="top">
            <label for="last_name">Last Name *</label>
            </td>
            <td valign="top">
            <input  type="text" name="last_name" maxlength="50" size="30">
            </td>
            </tr>

            <tr>
            <td valign="top">
            <label for="email">Email Address *</label>
            </td>
            <td valign="top">
            <input  type="text" name="email" maxlength="80" 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="service">Service Required</label>
            </td>
            <td valign="top">
            <input  type="text" name="service" maxlength="30" size="30">
            </td>
            </tr>

            <tr>
             <td valign="top">
             <label for="file">If you have any drawings or images to submit please do so</label>
             </td>
            <td valign="top">
            <input type="file" name="attachment" ></textarea>
            </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>

My Php

    <?php

if(isset($_POST['email'])) {

    // CHANGE THE TWO LINES BELOW
    $email_to = "matthew.p@cawthornes.co.uk";

    $email_subject = "website html form submissions";

    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['last_name']) ||
        !isset($_POST['email']) ||
        !isset($_POST['telephone']) ||
        !isset($_POST['service']) ||
        !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
    $last_name = $_POST['last_name']; // required
    $email_from = $_POST['email']; // required
    $telephone = $_POST['telephone']; // not required
    $service = $_POST['service']; // not required
    $comments = $_POST['comments']; // required
    /* GET File Variables */
    $tmpName = $_FILES['attachment']['tmp_name'];
    $fileType = $_FILES['attachment']['type'];
    $fileName = $_FILES['attachment']['name']; 


    $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,$first_name)) {
    $error_message .= 'The First Name you entered does not appear to be valid.<br />';
  }
  if(!preg_match($string_exp,$last_name)) {
    $error_message .= 'The Last 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.

";

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

    if (file($tmpName)) {
  /* Reading file ('rb' = read binary)  */
  $file = fopen($tmpName,'rb');
  $data = fread($file,filesize($tmpName));
  fclose($file);

  /* a boundary string */
  $randomVal = md5(time());
  $mimeBoundary = "==Multipart_Boundary_x{$randomVal}x";

  /* Header for File Attachment */
  $headers .= "
MIME-Version: 1.0
";
  $headers .= "Content-Type: multipart/mixed;
" ;
  $headers .= " boundary=\"{$mimeBoundary}\"";

  /* Multipart Boundary above message */
  $message = "This is a multi-part message in MIME format.

" .
  "--{$mimeBoundary}
" .
  "Content-Type: text/plain; charset=\"iso-8859-1\"
" .
  "Content-Transfer-Encoding: 7bit

" .
  $message . "

";

  /* Encoding file data */
  $data = chunk_split(base64_encode($data));
 }





    $email_message .= "First Name: ".clean_string($first_name)."
";
    $email_message .= "Last Name: ".clean_string($last_name)."
";
    $email_message .= "Email: ".clean_string($email_from)."
";
    $email_message .= "Telephone: ".clean_string($telephone)."
";
    $email_message .= "Service: ".clean_string($service)."
";
    $email_message .= "Comments: ".clean_string($comments)."
";
    $email_message .= "attachment:  ".clean_string($file)."
";

     /* Adding attchment-file to message*/
    $email_message .= "--{$mimeBoundary}
" .
    "Content-Type: {$fileType};
" .
    " name=\"{$fileName}\"
" .
    "Content-Transfer-Encoding: base64

" .
     $data . "

" .
     "--{$mimeBoundary}--
";
// create email headers
$headers = 'From: '.$email_from."
".
'Reply-To: '.$email_from."
" .
'X-Mailer: PHP/' . phpversion();
@mail($email_to, $email_subject, $email_message, $headers);  



function IsInjected($str)
{
  $injections = array('(
+)',
              '(+)',
              '(\t+)',
              '(%0A+)',
              '(%0D+)',
              '(%08+)',
              '(%09+)'
              );
  $inject = join('|', $injections);
  $inject = "/$inject/i";
  if(preg_match($inject,$str))
    {
    return true;
  }
  else
    {
    return false;
  }
}
?>

<!-- place your own success html below -->

<h3>Thank you for contacting us. We will be in touch with you very soon.</

<?php
}
die();
?>
  • 写回答

1条回答 默认 最新

  • dqtu14636 2014-04-29 15:03
    关注

    Add Content-Disposition: attachment to the headers of the attachment part of your email.

    评论

报告相同问题?

悬赏问题

  • ¥15 关于#java#的问题:找一份能快速看完mooc视频的代码
  • ¥15 这种微信登录授权 谁可以做啊
  • ¥15 请问我该如何添加自己的数据去运行蚁群算法代码
  • ¥20 用HslCommunication 连接欧姆龙 plc有时会连接失败。报异常为“未知错误”
  • ¥15 网络设备配置与管理这个该怎么弄
  • ¥20 机器学习能否像多层线性模型一样处理嵌套数据
  • ¥20 西门子S7-Graph,S7-300,梯形图
  • ¥50 用易语言http 访问不了网页
  • ¥50 safari浏览器fetch提交数据后数据丢失问题
  • ¥15 matlab不知道怎么改,求解答!!