php - File are shown but not directories -
so code should list downwards files directory..but shows directory..i want remove it..is using scandir wrong?
<ul> <?php echo "list of files"?> <?php $dir = 'kcfinder/upload/files'; $files = scandir($dir); foreach($files $ind_file){ ?> <li><?php echo $ind_file;?> </a> | <a href="includes/delete.php?file=<?=$ind_file?>">delete</a></li> <?php } ?> </ul>
using is_file
function, can check whether current item file or not.
try code
if(is_file($dir . $ind_file)) { // code }
php directory scandir
No comments:
Post a Comment