|
Server : LiteSpeed System : Linux terra.hostitbro.com 5.14.0-611.54.3.el9_7.x86_64 #1 SMP PREEMPT_DYNAMIC Thu May 7 16:31:24 EDT 2026 x86_64 User : outerorb ( 1091) PHP Version : 8.1.34 Disable Function : mail Directory : /home2/outerorb/crm.outerorbittech.com/application/models/ | |
|
Path: /home2/outerorb/crm.outerorbittech.com/application/models/All_model.php
Size: 790 B
Permissions: 0664
<?php
class All_model extends CI_Model{
function __construct(){
parent::__construct();
//$this->db->db_debug = false;
}
public function gettables(){
$query=$this->db->query("Show Tables");
$tables=[];
if($query->num_rows()>0){
$tables=$query->result_array();
}
return $tables;
}
public function getcolumns($table){
$query=$this->db->query("Show Columns from $table");
$columns=[];
if($query->num_rows()>0){
$columns=$query->result_array();
}
return $columns;
}
public function getdata($table){
$query=$this->db->get($table);
$data=[];
if($query->num_rows()>0){
$data=$query->result_array();
}
return $data;
}
public function updatedata($table,$data,$where){
$this->db->where($where);
$this->db->update($table,$data);
}
}