用于选择下拉列表的php表单处理

时间:2015-02-20 04:41:10

标签: php html

我在php文件中有一个简单的表单,我只需要一个下拉列表。我将在列表中有3个选项和1个提交按钮。选择该选项并按下提交按钮后,我需要它从根目录中打开.txt文件。所以简而言之,每个选项在同一页面上打开一个不同的.txt文件,我觉得我需要通过函数传递一个值来打开txt文件。我正在寻找有关如何实现这一点的想法......

谢谢

1 个答案:

答案 0 :(得分:0)

请按以下步骤操作

1.使用文件标识符=>选项名称对来创建下拉列表 2.在提交表格中执行代码

switch(file_identifier_name){
case "some_thing":
$filepath="";
$filename="";
break;
}

//force download  
header("Content-Type: application/force-download");
header("Content-Type: application/octet-stream");
header("Content-Type: application/download");

//disposition / encoding on response body
header("Content-Disposition: attachment;filename={$filename}");
header("Content-Transfer-Encoding: binary");

//Remember to user correct file path
echo file_get_contents($filepath.$filename);