关于Codeigniter会员人数?

时间:2019-04-22 23:22:27

标签: codeigniter

如何显示在Codeigniter中注册的会员总数?

我需要模型,控制器,查看代码。

如果您能提供帮助,我将不胜感激。

2 个答案:

答案 0 :(得分:1)

由于您没有给我们提供更多代码和信息。我认为您想显示视图中注册的用户总数,因此请将这部分代码写在您要计数的地方数字。

  <?php 
      $this->load->model('admindash_model');
      $count_users = count($this->admindash_model->get());
      print $count_users;
   ?>
  

我认为这将为您提供帮助。如果您能理解并放置   正确。

答案 1 :(得分:0)

型号:

public function get(){
       $this->db->select('gorun');
       $this->db->from('users');
       $this->db->where('gorun', '0' );
       return $this->db->count_all_results(); 
 }

控制器:

public function admindash(){
       $this->load->model("admindash_model");    
       $results = $this->admindash_model->get();
}