[eluser]Computerzworld[/eluser]
got the solution
what I did is that I have passed the file input name as argument in do_upload() function.
so if I am having three file input fields then what I will write is,
Code:
$this->upload->do_upload('userfile1')
$this->upload->do_upload('userfile2')
$this->upload->do_upload('userfile3')
.
That's it. It will work like a charm...
HTH...