Hello I need a little help, how I get this same name what I have in html in to php ?
In html I have :
<input type="file" name="data[UploadFile][file_upload][]" id="uploadFilefiles">
and in php :
$this->request->data['UploadFile']['name'] = $this->request->data['UploadFile']['file_upload']['name'];
How can I use these [] what I have in html in php ?