উত্তর:
নীচে উদাহরণ দেখুন ...
$options = array();
$options["1"] = "One";
$options["2"] = "Two";
$options["3"] = "Three";
$options["4"] = "Four";
$form['ios'] = array(
'#title' => t(''),
'#type' => 'checkboxes',
'#description' => t(''),
'#options' => $options,
'#default_value' => array("1", "2", "3")
);
আপনার কাছে নিউজ লেটার বা শর্ত শর্তের চেক বক্সের মতো একক ক্ষেত্র রয়েছে, আপনি নীচের কোডটি ব্যবহার করতে পারেন
$form['name']['terms_condition'] = array(
'#type' =>'checkbox',
'#title'=>t('Terms and conditions'),
'#required'=>TRUE,
'#default_value' =>TRUE, // for default checked and false is not checked
);
তুমি কি চেষ্টা করেছ?
$form['ios'] = array(
'#title' => t(''),
'#type' => 'checkboxes',
'#description' => t(''),
'#options' => $options,
'#default_value' => array($value) // this is not working
);
//$value should be the option you want to have
অস্কার
true
?