Can someone please help me with this image loading
I have a simple html form that should upload an image:
and display the image file name in the following page:HTML Code:<html><body> <form method="post" action="display.php" enctype="multipart/form-data"> <input type="hidden" name="max_file_size" value="55000"><input type="file" name="image"><br> <input type="submit"> </form></body></html>
But nothing happensHTML Code:<html><body> <form name="display.php" method="POST"> <php echo $_POST['image']; ?> <input type="submit"> <input type="hidden" name="image" value="<?php echo $_POST['image']; ?>"> </form></body></html>![]()
What do I need to do, am confused![]()






Bookmarks