I want to pass $data from the controller named poll to the results_view however I am getting an undefined variable error.
$data
poll
results_view
In controller:
$data["result"] = $this->login_model->get_login(); // Get array value from DB.. $this->load->view('login-form',$data); // Pass the array to view
In view:
print_r($result); // print the array in view file