如果我们选择文件上传和表单属性NULL
,我会在%fdat
EmbPerl
变量中将表单数据值设为enctype="multipart/form-data"
。
这是EmbPerl代码:
if(( defined $fdat{file} && $fdat{file} ) && $fdat{upload} )
{
$filename = "/tmp/sample.txt";<br/>
open (FILE, "> $filename") || die("open failed: $!");
while (read($fdat{file}, $buffer, 32768)) {
print FILE $buffer || die("print test: $!");
close FILE || die("close test: $!");
}
HTML代码是:
<form name="form1" method="post" enctype="multipart/form-data" onsubmit="return validation();>
<table>
<tr> <td>Select EXCEL sheet</td>
<td><input type="file" name="file" value=""></td>
</tr>
<tr>
<td> </td>
<td><input type="submit" name="upload" value="upload"></td>
</tr>
</table>
</form>
我使用的是EmbPerl / 2.3.0,CGI / 3.63,Perl / 5.10.1,Apache / 2.2.22和Linux操作系统。
答案 0 :(得分:0)
如果您将CGI
版本降级为3.37
,那么它就能正常运行。