如何在PHP中强制下载.rtf文件?

时间:2014-04-06 21:49:39

标签: php file download content-type rtf

因此,我用于下载wordpad .rtf文件的按钮的代码如下:

我的php脚本:

 <?php 

    if(isset($_POST['file_name'])){
    $file = $_POST['file_name'];
    header('Content-type: application/rtf');
    header('Content-Disposition: attachment; filename="'.$file.'"');
    readfile('uploads/'.$file);
    exit();
    }

和相关的div:

<div class ="buttonhol">
    <h2> <center> HOLIDAY REQUEST FORM </center> </h2>
    <form action="rota.php" method="post" name="downloadform">
  <input name="file_name" value="HolidayRequestForm.rtf" type="hidden">
  <input type="submit" value="Download Holiday Request Form">
    </div>

- 我在同一个文件夹中使用了与excel文件完全相同的代码&#39;上传&#39;但是内容类型适当匹配。当我点击下载假期申请表&#39;按钮..下载的文件标题正确,但文件只包含在该特定php类中编写的所有代码。

我做错了什么?

非常感谢提前。

0 个答案:

没有答案