the Form Validation library only validates $_POST fields. so, if we have a upload image in our form, this validation library always shows that the uploaded field is empty.
we set the validation rule for our upload field as follows:
$val->set_rules('userfile', 'Profile Picture', 'required');
This is because our uploaded file resides in the $_FILES variable, not in the $_POST field. So, we need to make some way to validate our $_FILES variable.
See my extended Form Validation library for codeigniter. This weakness has been overcome.
Other Links:
Documentation of Codeigniter Extend MY Form Validation Library.
See the book OpenCart 1.4 Template Design Cookbook.
See the book Joomla Mobile Development Beginners Guide


1 comment:
article that you created is very interesting, by reading this article I have a reference to write a new post on my blog
Post a Comment