ramytamer

Untitled

Aug 6th, 2014
224
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.74 KB | None | 0 0
  1. <!doctype html>
  2. <html>
  3.     <head>
  4.         <meta charset="utf-8">
  5.         <meta name="description" content="">
  6.         <meta name="viewport" content="width=device-width, initial-scale=1">
  7.         <title>Untitled</title>
  8.         <link rel="stylesheet" href="css/style.css">
  9.         <link rel="author" href="humans.txt">
  10.     </head>
  11.     <body>
  12.        
  13.     <div class="container">
  14.         <form method="post" enctype="multipart/form-data">
  15.             <input type="file" name="file">
  16.             <br>
  17.             <input type="submit" value="upload" name="submit">
  18.         </form>
  19.         <?php
  20.         if (isset($_POST['submit'])) {
  21.             print_r($_FILES);
  22.         }
  23.         ?>
  24.     </div>
  25.         <script src="js/main.js"></script>
  26.     </body>
  27. </html>
Advertisement
Add Comment
Please, Sign In to add comment