Example #1
0
 function __construct($studentid)
 {
     $database = new Database();
     if ($database->connect()) {
         $studentDetails = $database->getStudentDetails($studentid);
         $database->disconnect();
         unset($database);
         if ($studentDetails != NULL) {
             parent::__construct($studentid);
         }
     }
 }