Я пытаюсь загрузить файлы с этой формой
<form action="/ajax/images/store_image" method="post" enctype="multipart/form-data">
<div class="form-group">
<label for="exampleFormControlFile1">Selecciona una imagen</label>
<input type="file" class="form-control-file" id="exampleFormControlFile1">
<input type="hidden" name="{{ csrf_name }}" value="{{ csrf_hash }}">
</div>
<div class="form-group">
<button type="submit" class="btn btn-primary">Submit</button>
</div>
</form>
И это контроллер codeigniter, который прослушивает запрос
<?php
defined('BASEPATH') OR exit('No direct script access allowed');
require_once APPPATH . 'controllers/Common/Backend_Controller.php';
/**
* This class provides all the methods & functionallity of public "Batch operations" page.
*/
class Images extends Backend_Controller {
public function storeImage(){
var_dump($_POST);
}
}
Он показывает только $_POST
содержимое ..и его всегда пусто