我是非常新的php,虽然可以让opendir()工作(只显示表中的文件列表)现在我有一个创建分页的问题。对不起,我一直在那里使用教程,但不能让它们工作。我非常感谢你的快速帮助。
这是我的代码:
$dir = 'files/memoranda';
$exclude = array('.','..','.htaccess');
$y = (isset($_GET['y']))? strtolower($_GET['y']) : '';
$res = opendir($dir);
while(false!== ($file = readdir($res))) {
if(strpos(strtolower($file),$y)!== false &&!in_array($file,$exclude)) {
echo'
<div class="Row">
<div class="Cell">
<h4><a href=" ' . $dir . '/' . $file . ' ">'.$file.'</a></h4>
</div>
<div id="Cell" style="text-align: center;vertical-align:middle;border-top:solid 1px #cecece;">
<h4><a href=" ' . $dir . '/' . $file . ' "><img style="text-align:center;padding-top:6px;" src="icon_download.png" width="30px" height="30px" ></a></h4>
</div>
</div>
';
}
}