if you want to upload images on the server using PHP then you should should follow me ... step 1 > Create a form and with a submit button in 'index.html'. step2 > Create a folder 'upload' in the same directory where your 'index.html' located. step3 > 'show.php' to show all the images from your server. step1 > index.php <!DOCTYPE html> <html> <head> <title>Upload photo</title> </head> <body> <h2>Choose file to upload ...</h2> <form action="process.php" method="POST" enctype="multipart/form-data"> choose file <input type="file" name="filename"> <input type="submit" value="Submit"><br><br> </form> <form action="show.php" method="POST" enctype="multipart/form-data"> <button type="submit">Show Pics</b...
CommonAjay.com is for Technology and computer languages.