我有一个HTML选择表单,用我的数据库中的元素填充我的列表,如下所示:
<form action="" method="POST">
<select name="item_select">
<?php
$query = "SELECT * FROM files_table";
$result = mysql_query($query);
while ($row = mysql_fetch_object($result)) {
?>
<option value=<?php echo $row->id; ?> > <?php echo $row->file_name; ></option>
<?php }// end while?>
</select>
<br /><br />
<input name="show_png" type="submit" value="Show" />
<input name="delete" type="submit" value="Delete" />
<input name="download_text" type="submit" value="Download .txt File" />
<input name="download_image" type="submit" value="Download .png File" />
</form>
我有表格的“显示”和“删除”按钮的功能,以显示和删除存储在数据库中的内容。但是,我无法找到让用户下载文件的方法。现在,我的基本策略是:
if (isset($_POST['download_text'])) {
// Code to create .txt file from content (omitted).
// File name of content stored in $file_name variable.
// Download file.
header('Content-type: text/plain');
header('Content-Disposition: attachment; filename="sample.txt"');
readfile($file_name);
}
这种作品。我的意思是我下载一个包含内容的文件,但是出了什么问题我也看到了这个内容之后的纯文本html表单。有没有办法确保这不会出现?
答案 0 :(得分:8)
readfile
之后
答案 1 :(得分:-1)
我真的不明白你的问题在哪里,实际上你的代码工作正常。我已经测试过,文件下载时没有任何HTML内容。 谢谢,