How do I Change the select option to check boxes in the following code:
foreach($qas as $k=>$v)
{
echo "<input id='text' style='width:40%' type='text' value='".$v['question']."' name='questions[]' >";
echo "<select name='selected_answers[]'>";
foreach($v['answers'] as $answer){
echo "<option value='".$answer."'>".$answer."</option>";
}
echo "</select>";
echo "<br/><br/>";
}