Respuesta: repoblar checkbox Cita:
Iniciado por Manual de CodeIgniter form_checkbox()
Lets you generate a checkbox field. Simple example:
echo form_checkbox('newsletter', 'accept', TRUE);
// Would produce:
<input type="checkbox" name="newsletter" value="accept" checked="checked" /> The third parameter contains a boolean TRUE/FALSE to determine whether the box should be checked or not. Segun el manual del form helper mas o menos acerte. |