我有一个简单的html表单,如:
<form action="http://localhost/index.php" method="post" accept-charset="utf-8" enctype="multipart/form-data">
<input type="text" name="name"/> Name<br/><br/>
Content<br/>
<textarea name="content" style="width:350px;height: 350px;">
</textarea><br/>
Category: <select name="category">
<option value="1">ABC</option>
<option value="2">CBA</option>
</select>
<br/>
Omage: <input type="file" name="image"/>
<br/>
Swf: <input type="file" name="swf"/><br/>
<input type="submit" value="Save"/>
</form>
如果我在上传文件时选择图像,我可以从$ _POST获取数据,如:
Array ( [name] => example [content] => try [category] => 1 )
但是当我选择.swf文件时,结果是:
Array ( )
有什么问题?我怎样才能上传.swf文件?