文本文件上传无效

时间:2016-06-28 23:06:11

标签: php html post

我正在尝试用PHP处理上传的文本文件。

HTML

<p>Please upload file below:</p>

<form action="process.php" method="post">
      <input type="file" name="file" accept="text/plain">
      <input type="submit">
</form>

PHP

<?php

// print the file metadata
print_r($_FILES);

?>

当我提交表单时,我只是打印一个空数组:Array()

我在这里做错了什么?我希望能够逐行阅读文本文件。

0 个答案:

没有答案