Ask your own question, for FREE!
Computer Science 22 Online
OpenStudy (anonymous):

in php multiple uploader but in the filed we press 5 number five browser will be appear

OpenStudy (anonymous):

I think what you're looking for is some Javascript to create multiple fields (alternatively a "middle page" that creates the number of pages posted - you could do that with a simple PHP loop). By "five browser", I assume you mean five input fields. The two major ways to do that would be to have a Javascript function that appends 5 new input fields, or a PHP page that takes a number as input and does something like for($i=0;$i<$number;$i++) { echo "<input type='file' name='files[]' />"; } When you receive the files in the backend, the $_FILES array will have an array $_FILES['files'] in it.

OpenStudy (anonymous):

tan q for giving answer

Can't find your answer? Make a FREE account and ask your own questions, OR help others and earn volunteer hours!

Join our real-time social learning platform and learn together with your friends!
Can't find your answer? Make a FREE account and ask your own questions, OR help others and earn volunteer hours!

Join our real-time social learning platform and learn together with your friends!