0
votes
2answers
29 views

Upload error - file is not writable

I want to upload multiple files to the server. As far as I can see files are not writable. What can I do so my code can actually work and upload files. PHP: if(isset($_FILES ['uploaded_files'])) { ...
0
votes
1answer
156 views

Multiple File Selection and Upload In IE (version < 9)

The code am using to select multiple file(s) at a time and to upload them to server is :- <html> <body> <form action="upload.php" method="post" enctype="multipart/form-data" ...
1
vote
0answers
103 views

Ajax Upload: How to make each file I upload have its own extension as a request parameter?

So I am loooking at Ajax Upload library. I made it work with my server and upload multiple files. But I dont get how to set such parameter as file extension for each difrent file I upload. So I wonder ...
0
votes
2answers
930 views

cannot get multiple uploaded files from $_FILES in php

I cannot retrieve multiple files in my php code from $_FILES. Here is the input form: <form enctype="multipart/form-data" action="file-upload.php" method="POST"> Upload the several ...
11
votes
4answers
6k views

DIFF utility works for 2 files. How to compare more than 2 files at a time?

So the utility Diff works just like I want for 2 files, but I have a project that requires comparisons with more than 2 files at a time, maybe up to 10 at a time. This requires having all those files ...