i m having trouble in uploading multiple files with same input name:
I dont think all three files will be under the single request.FILES['file'] object. request.FILES['file'] is likely to have either the 1st file or the last file from that list.
request.FILES['file']
You need to uniquely name the input elements like so:
..for example.
EDIT: Justin's answer is better!