14 lines
273 B
PHP
14 lines
273 B
PHP
|
|
<!DOCTYPE html>
|
|
<html>
|
|
<body>
|
|
|
|
<form action="upload.php" method="post" enctype="multipart/form-data">
|
|
Select image to upload:
|
|
<input type="file" name="fileToUpload" id="fileToUpload">
|
|
<input type="submit" value="Upload Image" name="submit">
|
|
</form>
|
|
|
|
</body>
|
|
</html>
|