Hit Counter in Codeigniter

后端 未结 2 1547
心在旅途
心在旅途 2021-01-06 20:29

I have the code below:

(Step by step)

  1. Put counter.txt in APPPATH . \'logs/counter.txt\'
  2. Make counter_helper.p
2条回答
  •  感动是毒
    2021-01-06 20:59

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

    application > core > MY_Controller.php

    load->helper('counter');
            $this->count_visitor = count_visitor();
        }   
    }
    

提交回复
热议问题