I need to show the thumbnail near the selected image in the HTML form.
<form action="upload_file.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>
Also I have written the move_uploaded_file function as the php part. What I need is before submitting the form I need to show the thumbnail of the image which I selected. How can I acheive this?