View
<h3><?php echo $wonCount; ?></h3>
Controller
$this->load->model('coupon_model');
$data['wonCount'] = $this->coupon_model->wonCount();
$this->loadPage('dashboard', $data);
Model
public function wonCount() {
return $this->db->query("SELECT COUNT(status) FROM coupon WHERE status = 'won'");
}
Error :
Severity: Notice
Message: Undefined variable: wonCount
How can I display count?