我很想在我的文件夹目录中显示文件。我可以查看该文件夹,但不能查看该文件夹中的文件。
你能确定我哪里出错了吗?
<?php
$username=$_SESSION['username' ];
if(isset($_GET['directory'])){
if(strcmp($_GET['directory'],' userFolders/')==0){
$dir='userFolders/'.$username. '/';
}else{
$dir=$_GET['directory'];
}
$myfolders=myfolders($dir);
if(empty($myfolders)){
echo '<tr><td> <b> Your folder is empty </b></td><td></td><td></td></ tr>';
}else{
foreach($myfolders as $folder){
echo '<tr>
<td align="left"><a target=_blank href="honey.php?directory=',$ folder,'"> ',$folder,'</a></td>
<td align="center"> --- </td>
<td align="center"> <input type="image" src="delete.png" width="25" height="25"/></td>
</tr>';
}
$dir_handle = @opendir($dir) or die("Unable to open $dir");
while ($file = readdir($dir_handle)) {
if($file == "." || $file == "..")
continue;
echo '<tr>
<td align="left"><a target="_blank" href="'.$file.'"> ',$file,'</a></td>
<td align="center"> --- </td>
<td align="center"> <input type="image" src="delete.png" width="25" height="25"/></td>
</tr>';
}
closedir($dir_handle);
}
}
}