Linked Questions
99 questions linked to/from Multiple file upload in php
23 votes
8 answers
261k views
Multiple Image Upload PHP form with one input [duplicate]
I've been trying to make this work for quite some time now. But I can't seem to make it work. I wanted to have a multiple image upload form with only using one input. this is my upload.php <?php ...
14 votes
3 answers
23k views
HTML 5 multi file upload with PHP [duplicate]
Here is the code I have, and I'm wondering what I'm doing wrong that it doesn't display the name. <form action = "self.php" method="post" enctype="multipart/form-data"> <input type="file" ...
5 votes
2 answers
5k views
Upload two files using PHP [duplicate]
I know this may sound relatively basic question, but still wanted to ask. I need to upload two files at once by creating two file input in my form one for each file. Until now I have used a basic ...
0 votes
2 answers
2k views
How to perform multiple image insert and upload in PHP? [duplicate]
I want to add images goa.jpg, kerala.jpg, delhi.jpg using input type 'file' as multiple. The below code is working perfectly to insert single image. Now I want to perform multiple image uploading ...
0 votes
3 answers
3k views
php multiple image uploader [duplicate]
For the sake of God can someone help me make the below script to upload multiple images(5). I'm stuck at this for days with no luck. I have no idea how to make it upload five images. Pleeeease help me....
0 votes
1 answer
4k views
how to upload multiple images at a time in php? [duplicate]
this is code of my form page <form action="gallerycontroller.php" method="post" enctype="multipart/form-data"> <div> <label class="desc" id="title4" for="Field4"> Message </...
1 vote
2 answers
1k views
How to upload multiple images url into database and move files to folder [duplicate]
i want to upload multiple images url into database , after which i will move the file to an upload folder, then want to display the images and possibly edit by changing or removing them. i've been ...
0 votes
2 answers
1k views
Add more files separately using jquery [duplicate]
My users are able to add more files separately. Now I am able to add multiple files at once, but I can't choose other files it getting replace. When user added one file there should be option for add ...
1 vote
2 answers
1k views
How to upload 2 different file types via the same form php [duplicate]
my form looks like this <form action='uploadFile.php' method='POST'> <p>select an image</p> <p style='font-size: 10px'>280x280px</p&...
1 vote
1 answer
1k views
PHP Multi file upload only first image uploading [duplicate]
I'm uploading images using multiple instances of the following file input: <input type="file" name="photos[]"> I've set the form properties like this: <form action="?action=form" method="...
-3 votes
1 answer
1k views
get source path of an image file from HTML input file tag [duplicate]
I have been looking for an answer & reading since 24hrs that for security reasons this is not allowed by most of the browser but What I am trying to do - I want to upload an image using HTML ...
0 votes
1 answer
1k views
Multiple file upload results in 5 empty uploaded files [duplicate]
I have this form to upload multiple images to my gallery: HTML code <form method="POST" enctype="multipart/form-data" action="gallery.php?action=upload&folder=1"> <input type="file" ...
-1 votes
1 answer
1k views
DropZoneJS library multiple image upload into PHP MySQL database single row with comma(,) separated values [duplicate]
I want to upload multiple images in MySql database in the same row - separated by a comma(,). For uploading and processing the images I am using the DropZoneJS javascript library. The PHP code of ...
-2 votes
1 answer
744 views
PHP script insert multiples records after submit button [duplicate]
I'm creating a HTML form to insert input and file values in their respective tables using same php script to execute this. When I fill the input text and select images to send the path of all their to ...
0 votes
1 answer
1k views
Only last image uploaded from array when uploading multiple images in MYSQL with PHP [duplicate]
I'm trying to upload multiple images from a textbox to MYSQL database using PHP. But somehow it only inserts the last item from the array in the database. I tried uploading using one image, and that ...