php编程

WBOY
Release: 2016-06-23 14:19:06
Original
1065 people have browsed it

PHP 数据库 编程

数据库中一个文件夹名称的表,可以保存id,文件夹名,上级文件夹id等等一个文件列表,保存所属文件夹、文件信息等。然后在php的页面上显示可以进去子文件,可以创建文件夹的,应该怎么写
求指导,我刚学php,很多东西不会,可以给我具体的代码,我学习

回复讨论(解决方案)

看下php文件操作。

<table><?php   $handle = opendir("./2");   while(false != $file =(readdir($handle))){     if($file=='.' || $file=='..'){       continue;   }?>   <tr>       <td><img  src="ok.jpg"  align="absmiddle" alt="php编程" ><a class="mulu"   href="2.php?act=file&dir=<?php echo $file;?>"><?php echo $file;?></a></td>   </tr><?php   }	?></table>
Copy after login

这个功能可以不用数据库的
http://hi.baidu.com/02jesson/item/768ce8159304183ee3f986cf
这里有获取某目录下所有文件、子目录文件的方法,你可以参考下

Related labels:
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