Im using codeigniters file upload library .... everything works fine except i want to output the uploaded file details.
I have the following code
$uploaddata = $this->upload->data('userfile');
foreach($uploaddata as $details){
echo $details['file_name'];
}
The above code keeps erroring with the following
Message: Undefined index: file_name
Could someone let me know where im going wrong,
Cheers