Example #1
0
 function setDescription($description)
 {
     $database = new Database();
     if ($database->connect()) {
         $details = array();
         $details['descriptionSetFlag'] = $database->setCoursesDescription($this->getDetail('Cid'), $this->getDetail('Year'), $this->getDetail('Sem'), $description);
         $database->disconnect();
         unset($database);
         if ($details['descriptionSetFlag'] != NULL) {
             return $details;
         }
     }
 }