| Server IP : 14.225.204.176 / Your IP : 216.73.216.6 Web Server : nginx/1.24.0 System : Linux nodejs-ybgk 6.8.0-40-generic #40-Ubuntu SMP PREEMPT_DYNAMIC Fri Jul 5 10:34:03 UTC 2024 x86_64 User : root ( 0) PHP Version : 8.1.34 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /var/www/html/php/mmobot/app/modules/subscribers/models/ |
Upload File : |
<?php
defined('BASEPATH') OR exit('No direct script access allowed');
class subscribers_model extends MY_Model {
public $tb_users;
public $tb_subscribers;
public function __construct(){
$this->tb_categories = CATEGORIES;
$this->tb_services = SERVICES;
$this->tb_users = USERS;
$this->tb_subscribers = SUBSCRIBERS;
parent::__construct();
}
function get_users_list($total_rows = false, $status = "", $limit = "", $start = ""){
$data = array();
if ($limit != "" && $start >= 0) {
$this->db->limit($limit, $start);
}
$this->db->select("*");
$this->db->from($this->tb_subscribers);
$this->db->order_by("id", 'DESC');
$query = $this->db->get();
if ($total_rows) {
$result = $query->num_rows();
return $result;
}else{
$result = $query->result();
return $result;
}
return false;
}
function get_users_by_search($k){
$k = trim(htmlspecialchars($k));
$this->db->select('*');
$this->db->from($this->tb_subscribers);
if ($k != "" && strlen($k) >= 2) {
$this->db->where("(`first_name` LIKE '%".$k."%' ESCAPE '!' OR `last_name` LIKE '%".$k."%' ESCAPE '!' OR `email` LIKE '%".$k."%' ESCAPE '!' OR `country` LIKE '%".$k."%' ESCAPE '!' OR `ip` LIKE '%".$k."%' ESCAPE '!')");
}
$this->db->order_by('id', 'DESC');
$query = $this->db->get();
$result = $query->result();
return $result;
}
}