Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <html>
- <head>
- <title>Gilt - Camera Data Reports</title>
- <style>
- .default {
- font-family:'Lucida Grande', sans-serif;
- position: relative;
- }
- p:nth-child(odd) {
- background:#C0C0C0;
- line-height:180%;
- margin:0;
- padding-left:5px;
- opacity:0.8;
- }
- p:nth-child(even) {
- background:#ffffff;
- line-height:180%;
- margin:0;
- padding-left:5px;
- opacity:0.8;
- }
- </style>
- </head>
- <body style="background: url('http://api.thumbr.it/whitenoise-100x100.png?background=4ea6caff&noise=626262&density=70&opacity=53')">
- <div class="default" style="font-size:30pt"><i>Gilt</i> - Camera Data Reports</div>
- <br>
- <div class="default" style="width:320px; font-size:18pt; border-style:solid;">
- <?PHP
- $directory = ".";
- $phpfiles = glob($directory . "/*", GLOB_ONLYDIR);
- foreach($phpfiles as $phpfile)
- {
- echo "<p><a href=$phpfile>" . basename($phpfile) . "</a>             " . date('M n, H:i', filectime($phpfile)) . "</p>";
- }
- ?>
- </div>
- <div class="default" style="top:15px;">Reports prepared by Elliott C. Balsley.</div>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement