public function post_profile()
 {
     $object_profile = UserProfile::get_instance();
     $return = $object_profile->post_profile('admin', 'mail', 'Administrator');
     return $return;
 }
 public function post_profile()
 {
     $object_profile = UserProfile::get_instance();
     $return = $object_profile->post_profile('teacher', 'Mail', 'Teacher');
     return $return;
 }
 public function post_profile()
 {
     $object_profile = UserProfile::get_instance();
     $return = $object_profile->post_profile('students', 'stu_id', 'Student');
     return $return;
 }