Advertisement
Guest User

Untitled

a guest
Feb 27th, 2020
155
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.56 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. <title>Document</title>
  7. </head>
  8. <body>
  9. <table>
  10. <?php foreach ($files as $directory => $inner_files) { ?>
  11. <tr>
  12. <td>Folder: <?= $directory ?></td>
  13. </tr>
  14.  
  15. <? foreach ($inner_files as $file) { ?>
  16. <tr>
  17. <td>File: <?= $directory ?>/<?= $file ?></td>
  18. </tr>
  19. <? } ?>
  20. <? } ?>
  21. </table>
  22. </body>
  23. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement