McGansWebsite/admin/application/models/Degree_model.php
dotwingssoftware 6515996f87 20230121
Role, Employee, Department, Degree, Semester, Subject, Faculty Edit Completed
2023-01-21 19:11:47 +05:30

43 lines
977 B
PHP

<?php
if (!defined('BASEPATH'))
exit('No direct script access allowed');
class Degree_model extends CI_Model {
public function __construct() {
parent::__construct();
}
function deg_list()
{
$this->db->select('deg.*,d.id as departmentId,d.name as departmentName');
$this->db->from('degree as deg');
$this->db->join('department as d','d.id=deg.departmentId','INNER');
$this->db->where(array('deg.status'=>1));
$query = $this->db->get();
//echo $this->db->last_query();exit;
return $query;
}
function get_deg($id)
{
$this->db->select('*');
$this->db->from('degree');
$this->db->where(array('status'=>1,'id'=>$id));
$query = $this->db->get();
//echo $this->db->last_query();exit;
return $query;
}
function get_dep()
{
$this->db->select('id,name');
$this->db->from('department');
$this->db->where(array('status'=>1));
$query = $this->db->get();
//echo $this->db->last_query();exit;
return $query;
}
}