How can we pass result data from CodeIgniter controller to AngularJS controller? In CodeIgniter controller using jsonSuccess code here I\'m passing data to AngularJS but I woul
I already gave you the solution this is Repeated Question
$data['siteName'] = $CI->config->item('siteName'); $data['siteURL'] = site_url(); if($data['status'] == 'success') { $data['result'] = $this->LowCredit_model->info($data['data']); jsonSuccess($data); }