Advertisement
Guest User

Html

a guest
Jan 16th, 2019
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.61 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="ru">
  3. <head>
  4.     <meta charset="UTF-8">
  5.     <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6.     <meta http-equiv="X-UA-Compatible" content="ie=edge">
  7.     <title>Document</title>
  8. </head>
  9. <body>
  10.  
  11. <?php
  12. $d=dir("files");
  13. while ($entry = $d->read()) {
  14.     if(($entry!=".")&&($entry!="..")){
  15.  echo "<a href='files/$entry'>$entry</a><br>\n";
  16. }
  17.  
  18. }
  19. $d->close();
  20.  
  21. ?>
  22. <form action="copy.php" method="post" enctype="multipart/form-data">
  23. <input name="file" type="file">
  24. <input name="submit" type="submit" value="Загрузить">
  25. </form>    
  26. </body>
  27. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement