form_checkbox is not working in Php (Codeigniter).
<div class='checkbox'>
<?php
echo form_checkbox(array(
'name' => 'remember',
'id' => 'remember',
'value' => 'Remember Me',
'checked' => FALSE,
));
?>
</div>
I have to print the label with checkbox.