samedi 5 novembre 2016

Add a group of checkbox so that multiple value can be stored in database

I want to store multiple checkboxes value in the database , currently only last checkbox value i.e. demo3 is stored. Other values are not going in database . $preprocedure=array();

    $preprocedure[] =  $mform->createElement('advcheckbox', 'preprocedure','', 'Demo1', array('group' => 1), array('','demo1'));
    $preprocedure[] =  $mform->createElement('advcheckbox', 'preprocedure','', 'Demo2', array('group' => 1), array('','demo2'));
    $preprocedure[] =  $mform->createElement('advcheckbox', 'preprocedure','', 'Demo3', array('group' => 1), array('','demo3'));
   $mform->addGroup($preprocedure, 'preprocedure', get_string('preprocedure', 'assignsubmission_metadata'),array('<br>'), false);




Aucun commentaire:

Enregistrer un commentaire