mostly filebased Content Presentation System
Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

pirms 4 gadiem
123456789101112131415161718192021222324252627282930313233343536373839
  1. <!doctype html>
  2. <html>
  3. <head><title>maintainance</title>
  4. <style>
  5. body {
  6. background: white;
  7. }
  8. #message {
  9. width:50vw;
  10. margin:3em auto;
  11. border:20px solid yellow;
  12. padding: 1em;
  13. font-family: mono;
  14. font-weight: bold;
  15. }
  16. </style>
  17. </head>
  18. <?php
  19. $dir = "tmp/";
  20. $ls = scandir($dir);
  21. $count = 0;
  22. foreach($ls as $file) {
  23. if(!strncmp(".",$file,1)) continue;
  24. unlink($dir."".$file);
  25. $count++;
  26. }
  27. ?>
  28. <body>
  29. <div id="message">
  30. <p>erased <?php echo $count; ?> files</p>
  31. <p><a href="/">back to Homepage</a></p>
  32. </div>
  33. </body></html>