username = $newUser; $this->userEmail = $email; $this->status = 1; $this->userID = GetNextUserID(); } public function __destruct() { $this->username = NULL; $this->userEmail = NULL; $this->status = NULL; $this->userID = NULL; } public function GetUserName() { return $this->username; } public function GetUserEmail() { return $this->userEmail; } public function GetuserID() { return $this->userID; } public function GetUserStatus() { return $this->status; } public function SetUserStatus($input){ if($input > 1 || $input < 0){ return false; } $this->status = $input; return true; } } ?>