Hello guys i have coded a 'upload' thing and it it does work so i made a file for it named 'input.php' but now when i upload something it goes to the 'input.php' page but it isnt showing what i uploaded.
all i need now is the html/php code for it to show what the file was that was uploaded any help?
Code:
<html>
<head>
<title>Browse</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
</head>
<body>
<form action="input.php" method="post" enctype="multipart/form-data">
<p>
Select the File: <input type="file" name="filetest" accept="image/gif">
<br>
<input type="submit" value="Send"> <input type="reset">
</p>
</form>
</body>
</html>
all i need now is the html/php code for it to show what the file was that was uploaded any help?