Hit Counter in Codeigniter Hit Counter in Codeigniter codeigniter codeigniter

Hit Counter in Codeigniter


I got it to work fine when I loaded the helper $this->load->helper('counter');

application > core > MY_Controller.php

<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');class MY_Controller extends CI_Controller{    public $count_visitor;    public function __construct()    {        parent::__construct();        $this->load->helper('counter');        $this->count_visitor = count_visitor();    }   }


Yes, must load the helper:

$this->load->helper('counter');

or

config/autoload.php: $autoload['helper'] = array('counter');