D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
ksclnmuac
/
public_html
/
alumni
/
application
/
models
/
Filename :
CourseManager.php
back
Copy
<?php /** * Description of User * * @author Softpro India Pvt. Ltd. */ class CourseManager extends CI_Model { //put your code here public function __construct() { parent::__construct(); } function getAll() { $this->db->select("*"); $this->db->from("tbl_course"); $this->db->where("c_status","t"); $this->db->order_by("c_name", "ASC"); return $this->db->get(); } function getCourseByID($c_id) { $this->db->select("c_duration"); $this->db->from("tbl_course"); $this->db->where("c_id",$c_id); return $this->db->get(); } }