|
- <!DOCTYPE html>
- <!--
- To change this license header, choose License Headers in Project Properties.
- To change this template file, choose Tools | Templates
- and open the template in the editor.
- -->
- <html>
- <head>
- <meta charset="UTF-8">
- <title>Upload</title>
- </head>
- <body>
-
- <?php
-
- if (isset($_FILES["file"]["name"])) {
-
- $name = $_FILES["file"]["name"];
- $tmp_name = $_FILES['file']['tmp_name'];
- $error = $_FILES['file']['error'];
-
- if (!empty($name)) {
- $location = 'pictures/';
-
- if (move_uploaded_file($tmp_name, $location.$name)){
- echo 'Uploaded';
- }
-
- } else {
- echo 'please choose a file';
- }
- }
- ?>
-
- <form action="upload_picture.php" method="POST" enctype="multipart/form-data">
- <input type="file" name="file"><br><br>
- <input type="submit" value="Submit">
- </form>
- </body>
- </html>
|