index.php 831 B

1234567891011121314151617181920212223242526272829
  1. <?php
  2. require_once('include/config.php');
  3. require_once('include/db.php');
  4. $dirs = get_dir_list();
  5. $dirs_html = '';
  6. foreach ($dirs as $dir) {
  7. $dirs_html .= '<tr><td><a href="' . $config['basepath'] . 'dir.php?dir=' . urlencode($dir['path']) . '">' . htmlspecialchars($dir['name']) . '</a></td><td>' . $dir['count'] . '</td><td>' . date('j.m.Y', $dir['date']) . '</td></tr>';
  8. }
  9. ?><!DOCTYPE html>
  10. <html>
  11. <head>
  12. <title>Obrazki</title>
  13. <link rel="stylesheet" href="/obrazki/style.css" type="text/css">
  14. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  15. </head>
  16. <body>
  17. <h1>Dostępne katalogi z obrazkami</h1>
  18. Uwaga, nowy skrypt. Zgłoś problemy administratorowi.
  19. <table><tr><th>Nazwa</th><th>Obrazków</th><th>Utworzono</th></tr>
  20. <?=$dirs_html?>
  21. </table>
  22. <a class="k4" href="http://k4be.pl/"></a>
  23. </body>
  24. </html>