📁 PHP Dosya Yöneticisi
/
/
home
/
demodesigncom
/
berbersripti.demodesign.com.tr
/
panel
/
application
/
models
📝
Basvuru_model.php
← Geri Dön
<?php class Basvuru_model extends CI_Model { public $tableName = "basvuru"; public function __construct() { parent::__construct(); } public function get($where = array()) { return $this->db->where($where)->get($this->tableName)->row(); } /** Tüm Kayıtları bana getirecek olan metot.. */ public function get_all($where = array(), $order = "id ASC") { return $this->db->where($where)->order_by($order)->get($this->tableName)->result(); } public function add($data = array()) { return $this->db->insert($this->tableName, $data); } public function update($where = array(), $data = array()) { return $this->db->where($where)->update($this->tableName, $data); } public function delete($where = array()) { return $this->db->where($where)->delete($this->tableName); } }
💾 Kaydet
İptal
📝 Yeniden Adlandır
İptal
Kaydet
🔐 Dosya İzinleri (chmod)
İzin Değeri:
Hızlı Seçim:
777
755
644
600
777
= Herkes okur/yazar/çalıştırır
755
= Sahip tam, diğerleri okur/çalıştırır
644
= Sahip okur/yazar, diğerleri okur
600
= Sadece sahip okur/yazar
İptal
Uygula