I use the form validation libraray for a form in Codeigniter. When I use the set_value on the input fields for repopulating it works great, but how do I do this on the checkboxes? If they're checked I want them to still be checked if the form errors return true.
How?
This doesn't work:
<?php
$js = 'onClick="shipping(this.form)"';
echo form_checkbox('fillShipping', 'check', set_value('fillShipping'), $js);
?>