I am trying to implement a multiple file upload script to codeigniter. the script can be find here
http://valums.com/ajax-upload/. I find it quite good, so I decide to put in current apps.
The problem is, I couldn’t access the uploaded files with codeigniter. If you a codeigniter developer please advise how I could grap the file send by the script ?
CodeIgniter has a few ways to handle uploads, but since your ajax-upload script already has a handler, you should use that.
How to:
Create a new file in your application/libraries folder, named Qqfileuploader.php and paste this in it:
Now, in the controller that you’re uploading to, do this:
That should work.