Example #1
0
 function getDetailDayWiseCourseAttendance($type, $Date)
 {
     $tempcid = $this->getDetail('Cid');
     $tempsem = $this->getDetail('Sem');
     $tempyear = $this->getDetail('Year');
     $database = new Database();
     if ($database->connect()) {
         $t = $database->getDetailDayWiseCourseAttendance($tempcid['CourseID'], $tempsem['CourseSem'], $tempyear['CourseYear'], $type, $Date);
         return $t;
     }
 }