CodeIgniter Forums
file input - Printable Version

+- CodeIgniter Forums (https://forum.codeigniter.com)
+-- Forum: Archived Discussions (https://forum.codeigniter.com/forumdisplay.php?fid=20)
+--- Forum: Archived Libraries & Helpers (https://forum.codeigniter.com/forumdisplay.php?fid=22)
+--- Thread: file input (/showthread.php?tid=58044)



file input - El Forum - 05-08-2013

[eluser]boytun[/eluser]
Hello

I want know why this cause me an error:

Code:
$this->form_validation->set_rules('userfile'  'Document'  'required');

And Although the userfile is not empty , it show me an error tell me that this field is required

Thanks in advance


file input - El Forum - 05-08-2013

[eluser]jairoh_[/eluser]
there should be comma
Code:
$this->form_validation->set_rules('userfile' , 'Document' ,'required');