$this->template->set( content , $form->build(), false);forms are generating currectly, but at view, i echoed it, but all are escaped./
but i want to send it in this way,
$data = array(
'form' => $form->build();
);
$this->theme->get_template()->set('content', $this->theme->view('students/index',$data));
$this->theme->get_template()->set(
'content',
$this->theme->view(
'students/index',
$data,
false
)
);
It looks like you're new here. If you want to get involved, click one of these buttons!