1234567891011121314151617181920212223242526272829 |
- <?php
- require_once('include/config.php');
- require_once('include/db.php');
- $dirs = get_dir_list();
- $dirs_html = '';
- foreach ($dirs as $dir) {
- $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>';
- }
- ?><!DOCTYPE html>
- <html>
- <head>
- <title>Obrazki</title>
- <link rel="stylesheet" href="/obrazki/style.css" type="text/css">
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
- </head>
- <body>
- <h1>Dostępne katalogi z obrazkami</h1>
- Uwaga, nowy skrypt. Zgłoś problemy administratorowi.
- <table><tr><th>Nazwa</th><th>Obrazków</th><th>Utworzono</th></tr>
- <?=$dirs_html?>
- </table>
- <a class="k4" href="http://k4be.pl/"></a>
- </body>
- </html>
|