dubblebee
10/24/2013 - 11:31 AM

HTML - File Upload

HTML - File Upload

<html>

<body>

  <form action="upload.php" method="post" enctype="multipart/form-data">
    <label for="file">Filename:</label>
    <input type="file" name="file" id="file"><br>
    <input type="submit" name="submit" value="Submit">
  </form>

</body>

</html>