Advertisement
mukeshdak

2025-06-10_listing directories in php

Jun 10th, 2025 (edited)
949
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.33 KB | None | 0 0
  1. <?php echo "Current working directory: " . getcwd() . "<br>"; ?>
  2.  
  3. <h3><a href="./">Apps</a></h3><ol><?php
  4. $filenames = glob("*", GLOB_ONLYDIR );
  5.  
  6. foreach ($filenames as $filename) {
  7.     $f = basename($filename);
  8.     echo "<li style='font-size: 16px;'><a target='_blank' title='".$f."' href='./".$f."/'>".$f."</a></li>";
  9. }
  10. ?></ol>
  11.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement