Example #1
0
 function getAttendance($type)
 {
     $database = new Database();
     if ($database->connect()) {
         $details = array();
         // $var = $this->getDetail('Cid')['CourseID'];
         // echo $var;
         // exit();
         $details['Attendance'] = $database->getCourseAttendance($this->getDetail('Cid'), $this->getDetail('Year'), $this->getDetail('Sem'), $type);
         $database->disconnect();
         unset($database);
         if ($details['Attendance'] != NULL) {
             return $details;
         }
     }
 }