点击提交输入按钮时如何下载PHP文件

时间:2019-03-01 10:15:46

标签: php forms file download submit

我有一个带有输入提交按钮的表单,并且想要它,以便单击该按钮时可以下载文件。

我的if语句基本上只是检查文件是否存在,如果存在则开始下载文件。该部分有效,但是我无法使其正常工作,因此仅在单击按钮时才下载文件。

此刻,单击按钮没有任何反应。

也许我没有将if语句放在正确的位置?

      <form action='?module=clientsupport&call=landing-proco' method='post' enctype="multipart/form-data">           
        <input type='submit' name='download' class="button yellow" value="Download"/>

        <?php
        if (file_exists("D:/wwwroot/Workspace/George/Goliath/modules/test/file.txt")) {
            header('Content-Description: File Transfer');
            header('Content-Type: application/octet-stream');
            header('Content-Disposition: attachment; filename="' . basename("D:/wwwroot/Workspace/George/Goliath/modules/test/file.txt") . '"');
            header('Expires: 0');
            header('Cache-Control: must-revalidate');
            header('Pragma: public');
            header('Content-Length: ' . filesize("D:/wwwroot/Workspace/George/Goliath/modules/test/file.txt"));
            readfile("D:/wwwroot/Workspace/George/Goliath/modules/test/file.txt");
            sleep(2);
            unlink("D:/wwwroot/Workspace/George/Goliath/modules/test/file.txt");
            exit;
        }
        ?>

    </form>

2 个答案:

答案 0 :(得分:1)

从html删除php代码,使用您的PHP代码创建新文件,并将表单操作链接到此文件。会很好

答案 1 :(得分:0)

查看您的程序。

第1行:

     <form action='?module=clientsupport&call=landing-proco' method='post' enctype="multipart/form-data">           

…开始输出HTML文档。

然后您将获得:

 header('Content-Description: File Transfer');

开始输出不是HTML文档但it is too late的内容,因为您已经位于HTML文档的中间

设计逻辑以输出一件事或另一件事。