dqhmtpuy94946 2016-08-09 08:27
浏览 5
已采纳

Codeigniter在线访客我可以看到怎么样? [关闭]

I want to show online users in the admin panel of the website.Thank you to everyone who responded.

enter image description here

  • 写回答

2条回答 默认 最新

  • dongzun9958 2016-08-09 08:42
    关注

    On the users table you could create a column called online

    Name    Type     Length / Val
    online  tinyint     1
    

    Then when the user logins in. Update that user online column to 1

    Then on the a model function

    public function countOnline() {
       $this->db->where('online', '1');
       $query = $this->db->get('users');
    
       return $query->num_rows();
    }
    

    When the user logs out. You need to set that user online column to 0

    Model

    Filename: Users_model.php

    <?php
    
    class Users_model extends CI_Model {
    
        public function __construct() {
            parent::__construct();
        }
    
        public function countOnline() {
            $this->db->where('online', '1');
            $query = $this->db->get('users');
    
            return $query->num_rows();
        }
    }
    

    Controller

    Filename: Dashboard.php

    <?php
    
    class Dashboard extends CI_Controller {
    
    public function __construct() {
        parent::__construct();
        $this->load->model('users_model');
    }
    
    public function index() {
        $data['online_users'] = $this->users_model->countOnline();
    
        $this->load->view('header');
        $this->load->view('dashboard', $data);
        $this->load->view('footer');
    }
    
    }
    

    To see new users online total you have to reload the page each time you want to see new users online.

    There are scripts out there that can reload specific div's every few min.

    Hope this gives you a idea

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥100 set_link_state
  • ¥15 虚幻5 UE美术毛发渲染
  • ¥15 CVRP 图论 物流运输优化
  • ¥15 Tableau online 嵌入ppt失败
  • ¥100 支付宝网页转账系统不识别账号
  • ¥15 基于单片机的靶位控制系统
  • ¥15 真我手机蓝牙传输进度消息被关闭了,怎么打开?(关键词-消息通知)
  • ¥15 装 pytorch 的时候出了好多问题,遇到这种情况怎么处理?
  • ¥20 IOS游览器某宝手机网页版自动立即购买JavaScript脚本
  • ¥15 手机接入宽带网线,如何释放宽带全部速度