⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.1
Server IP:
185.238.29.86
Server:
Linux server2 6.8.12-6-pve #1 SMP PREEMPT_DYNAMIC PMX 6.8.12-6 (2024-12-19T19:05Z) x86_64
Server Software:
nginx/1.18.0
PHP Version:
8.1.31
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
var
/
www
/
mydry
/
application
/
models
/
View File Name :
Model_admin.php
<?php defined('BASEPATH') OR exit('No direct script access allowed'); class Model_admin extends CI_Model { function forget_password_update($email,$data) { $this->db->where('email',$email); $this->db->update('tbl_user',$data); } function reset_password_update($email,$data) { $this->db->where('email',$email); $this->db->update('tbl_user',$data); } function check_email($email) { $sql = "SELECT * FROM tbl_user WHERE email=?"; $query = $this->db->query($sql,array($email)); return $query->first_row('array'); } function check_password($email,$password) { $sql = "SELECT * FROM tbl_user WHERE email=? AND password=?"; $query = $this->db->query($sql,array($email,md5($password))); return $query->first_row('array'); } public function check_url($email,$token) { $sql = "SELECT * from tbl_user WHERE email=? AND token=?"; $query = $this->db->query($sql,array($email,$token)); return $query->num_rows(); } public function setting_update($data) { $this->db->where('id',1); $this->db->update('tbl_settings',$data); } function profile_update($data) { $this->db->where('id',1); $this->db->update('tbl_user',$data); } public function all_photos() { $sql = "SELECT * FROM tbl_photo ORDER BY photo_id ASC"; $query = $this->db->query($sql); return $query->result_array(); } public function total_photos() { $sql = 'SELECT * from tbl_photo'; $query = $this->db->query($sql); return $query->num_rows(); } public function total_directories() { $sql = 'SELECT * from tbl_directory'; $query = $this->db->query($sql); return $query->num_rows(); } public function total_client() { $sql = 'SELECT * from tbl_client'; $query = $this->db->query($sql); return $query->num_rows(); } function photo_ai_id() { $sql = "SHOW TABLE STATUS LIKE 'tbl_photo'"; $query = $this->db->query($sql); return $query->result_array(); } function photo_add($data) { $this->db->insert('tbl_photo',$data); return $this->db->insert_id(); } function photo_update($id,$data) { $this->db->where('photo_id',$id); $this->db->update('tbl_photo',$data); } function photo_delete($id) { $this->db->where('photo_id',$id); $this->db->delete('tbl_photo'); } function photo_get_data_by_id($id) { $sql = 'SELECT * FROM tbl_photo WHERE photo_id=?'; $query = $this->db->query($sql,array($id)); return $query->first_row('array'); } function photo_check($id) { $sql = 'SELECT * FROM tbl_photo WHERE photo_id=?'; $query = $this->db->query($sql,array($id)); return $query->first_row('array'); } public function all_directories() { $sql = "SELECT * FROM tbl_directory ORDER BY directory_id ASC"; $query = $this->db->query($sql); return $query->result_array(); } function directory_ai_id() { $sql = "SHOW TABLE STATUS LIKE 'tbl_directory'"; $query = $this->db->query($sql); return $query->result_array(); } function directory_add($data) { $this->db->insert('tbl_directory',$data); return $this->db->insert_id(); } function directory_update($id,$data) { $this->db->where('directory_id',$id); $this->db->update('tbl_directory',$data); } function directory_delete($id) { $this->db->where('directory_id',$id); $this->db->delete('tbl_directory'); } function directory_get_data_by_id($id) { $sql = 'SELECT * FROM tbl_directory WHERE directory_id=?'; $query = $this->db->query($sql,array($id)); return $query->first_row('array'); } function directory_check($id) { $sql = 'SELECT * FROM tbl_directory WHERE directory_id=?'; $query = $this->db->query($sql,array($id)); return $query->first_row('array'); } public function all_testimonials() { $sql = "SELECT * FROM tbl_testimonial ORDER BY testimonial_id ASC"; $query = $this->db->query($sql); return $query->result_array(); } function testimonial_ai_id() { $sql = "SHOW TABLE STATUS LIKE 'tbl_testimonial'"; $query = $this->db->query($sql); return $query->result_array(); } function testimonial_add($data) { $this->db->insert('tbl_testimonial',$data); return $this->db->insert_id(); } function testimonial_update($id,$data) { $this->db->where('testimonial_id',$id); $this->db->update('tbl_testimonial',$data); } function testimonial_delete($id) { $this->db->where('testimonial_id',$id); $this->db->delete('tbl_testimonial'); } function testimonial_get_data_by_id($id) { $sql = 'SELECT * FROM tbl_testimonial WHERE testimonial_id=?'; $query = $this->db->query($sql,array($id)); return $query->first_row('array'); } function testimonial_check($id) { $sql = 'SELECT * FROM tbl_testimonial WHERE testimonial_id=?'; $query = $this->db->query($sql,array($id)); return $query->first_row('array'); } public function all_client() { $sql = "SELECT * FROM tbl_client ORDER BY client_id ASC"; $query = $this->db->query($sql); return $query->result_array(); } function client_ai_id() { $sql = "SHOW TABLE STATUS LIKE 'tbl_client'"; $query = $this->db->query($sql); return $query->result_array(); } function client_add($data) { $this->db->insert('tbl_client',$data); return $this->db->insert_id(); } function client_update($id,$data) { $this->db->where('client_id',$id); $this->db->update('tbl_client',$data); } function client_delete($id) { $this->db->where('client_id',$id); $this->db->delete('tbl_client'); } function client_get_data_by_id($id) { $sql = 'SELECT * FROM tbl_client WHERE client_id=?'; $query = $this->db->query($sql,array($id)); return $query->first_row('array'); } function client_check($id) { $sql = 'SELECT * FROM tbl_client WHERE client_id=?'; $query = $this->db->query($sql,array($id)); return $query->first_row('array'); } // function client_background_delete($id) { // $this->db->where('client_id',$id); // $this->db->delete('tbl_client'); // } }