lang->line('question') . " " . $this->lang->line('bank'); ?>
lang->line('subject'); ?> :name; ?>
lang->line('level'); ?> :level]; ?>
lang->line('question_type'); ?> :question_type]; ?>
section_name != "")? $question->class_name."(". $question->section_name.")" : $question->class_name;
?>
lang->line('class'); ?> :
lang->line('question'); ?>:
question; ?>
question_type != "descriptive"){
if ($question->question_type == "singlechoice") {
foreach ($questionOpt as $question_opt_key => $question_opt_value) {
$select_opt = "";
if ($question->correct == $question_opt_key) {
$select_opt = "active";
}
if($question->{$question_opt_key} != ""){
?>
lang->line('option_' . $question_opt_value) . " : " . $question->{$question_opt_key}; ?>
question_type == "multichoice") {
$correct_ans=json_decode($question->correct);
foreach ($questionOpt as $question_opt_key => $question_opt_value) {
$select_opt = "";
if (in_array($question_opt_key,$correct_ans)) {
$select_opt = "active";
}
if($question->{$question_opt_key} != ""){
?>
lang->line('option_' . $question_opt_value) . " : " . $question->{$question_opt_key};
?>
question_type == "true_false") {
foreach ($question_true_false as $question_opt_key => $question_opt_value) {
$select_opt = "";
if ($question->correct == $question_opt_key) {
$select_opt = "active";
}
?>