php如何解决无法上传大于8M的文件问题
发布:smiling 来源: PHP粉丝网 添加日期:2020-10-20 11:53:17 浏览: 评论:0
这篇文章主要介绍了php如何解决无法上传大于8M的文件问题,需要的朋友可以参考下,开发一个文件上传共享网站,曾想使用下面的代码实现文件上传的功能:
- <form enctype="multipart/form-data" action="add_file.php" method="post">
- <fieldset><legend>Fill out the form to upload a file:</legend>
- <?php // Create the inputs.
- for ($i = 0; $i < $counter; $i++) {
- echo '<b>File:</b> <input type="file" name="upload' . $i . '" />
- <b>Description:</b> <textarea name="description' . $i . '" cols="40" rows="5"></textarea>
- ';
- }
- ?>
- </fieldset>
- <input type="hidden" name="submitted" value="TRUE" />
- [align=center]<input type="submit" name="submit" value="Submit" />[/align]
- </form>
在实际执行过程中发现上传稍微大一些的文件时,显示File couldn't be moved,数据库里显示文件名称,不显示大小,而上传大于8M的文件时,页面根本没有反应。
Tags: php无法上传大于8M的文件
- 上一篇:使用PHP强制下载PDF文件示例
- 下一篇:php设置允许大文件上传示例代码
推荐文章
热门文章
最新评论文章
- 写给考虑创业的年轻程序员(10)
- PHP新手上路(一)(7)
- 惹恼程序员的十件事(5)
- PHP邮件发送例子,已测试成功(5)
- 致初学者:PHP比ASP优秀的七个理由(4)
- PHP会被淘汰吗?(4)
- PHP新手上路(四)(4)
- 如何去学习PHP?(2)
- 简单入门级php分页代码(2)
- php中邮箱email 电话等格式的验证(2)