I am trying to upload multiple images in codeigniter using single input its working fine but i also want to add codeigniter validation on this input field but it not works. Here's my html code,
<input type="file" name="images[]" id="file" multiple="">
And Here's my codeigniter Code,
if (empty($_FILES['images']['name']))
{
$this->form_validation->set_rules('images', 'Item Image', 'required');
}
Can anyone please tell me why this validation not working when i try to change images name to images[] in codeigniter then this will always says image is required rather the image is selected.