Advertisement
spookybathtub

Untitled

Mar 28th, 2014
229
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.09 KB | None | 0 0
  1. <html>
  2. <head>
  3. <title>Gilt - Camera Data Reports</title>
  4. <style>
  5. .default {
  6.     font-family:'Lucida Grande', sans-serif;
  7.     position: relative;
  8. }
  9.  
  10. p:nth-child(odd) {
  11.     background:#C0C0C0;
  12.     line-height:180%;
  13.     margin:0;
  14.     padding-left:5px;
  15.     opacity:0.8;
  16. }
  17.  
  18. p:nth-child(even) {
  19.     background:#ffffff;
  20.     line-height:180%;
  21.     margin:0;
  22.     padding-left:5px;
  23.     opacity:0.8;
  24. }
  25. </style>
  26. </head>
  27. <body style="background: url('http://api.thumbr.it/whitenoise-100x100.png?background=4ea6caff&noise=626262&density=70&opacity=53')">
  28. <div class="default" style="font-size:30pt"><i>Gilt</i> - Camera Data Reports</div>
  29. <br>
  30. <div class="default" style="width:320px; font-size:18pt; border-style:solid;">
  31. <?PHP
  32.  
  33.     $directory = ".";
  34.     $phpfiles = glob($directory . "/*", GLOB_ONLYDIR);
  35.     foreach($phpfiles as $phpfile)
  36.     {
  37.         echo "<p><a href=$phpfile>" . basename($phpfile) . "</a>&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp" . date('M n, H:i', filectime($phpfile)) . "</p>";
  38.     }
  39. ?>
  40. </div>
  41.  
  42. <div class="default" style="top:15px;">Reports prepared by Elliott C. Balsley.</div>
  43.  
  44. </body>
  45. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement