📁 PHP Dosya Yöneticisi
/
/
home
/
demodesigncom
/
projetakipscripti.demodesign.com.tr
/
application
/
models
📝
Calisantur_model.php
← Geri Dön
<?php /* * Generated by CRUDigniter v3.2 * www.crudigniter.com */ class Calisantur_model extends CI_Model { function __construct() { parent::__construct(); } /* * Get calisantur by id */ function get_calisantur($id) { return $this->db->get_where('calisantur',array('id'=>$id))->row_array(); } /* * Get branş adını alma fonksiyonu */ function get_calisantur_ad($id){ $this->db->select('brans'); $this->db->where('id', $id); $query = $this->db->get('calisantur')->row_array(); return $query['brans']; } /* * Get all calisantur */ function get_all_calisantur() { $this->db->order_by('id', 'desc'); return $this->db->get('calisantur')->result_array(); } }
💾 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