Home > Backend Development > PHP Tutorial > 求教PHP+MYSQL的文件上传下载代码要怎样写?

求教PHP+MYSQL的文件上传下载代码要怎样写?

WBOY
Release: 2016-06-23 14:09:50
Original
1102 people have browsed it

毕业设计要做一个管理毕业论文的系统,要求学生能将doc格式的毕业论文上传,而导师能将论文下载下来,请问具体的代码要怎样写?


回复讨论(解决方案)

建议网上搜索一下,这种代码网上还是很多的。

上传就是提交表单嘛


处理提交的表单将上传文件处理存在一个路径下,然后将路径存在数据库里,

然后再将论文路径的链接呈现给导师,他一点击就可以下载了

查查PHP的超全局数组$_FILES的用法吧

手册上有现成的例子

网上有现成封装好的文件上传类!

学生页面 student.php

<?phpif($_FILES && $_POST['StudentID']) {  if(strtolower(pathinfo($_FILES['file']['name'], PATHINFO_EXTENSION)) == 'doc') {    move_uploaded_file($_FILES['file']['tmp_name'], $_POST['StudentID'].'.doc');    echo '上传成功,玩去吧!';  }}?><form method="POST" enctype="multipart/form-data"><input type=text name=StudentID /><br> <input type=file name=file /><br> <input type=submit value=提交></form>
Copy after login


导师页面 tutor.php
<?phpforeach(glob('*.doc') as $fn) {  echo "<a href='$fn'>" . substr($fn, 0, -4) . '</a><br />';}
Copy after login


这是基本代码,自己扩充去吧!

将文件用表单提交,数据库存取路径,然后再下载端输出文件路径的列表链接(直接链接到具体文件名称),点击就能下载了

过滤过滤 防止不安全

source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template