index.php 247 B

12345678910111213
  1. <!DOCTYPE html>
  2. <html>
  3. <body>
  4. <form action="upload.php" method="post" enctype="multipart/form-data">
  5. Select image to upload:
  6. <input type="file" name="file">
  7. <input type="submit" value="Upload Image" name="submit">
  8. </form>
  9. </body>
  10. </html>