public function unfollow($unfollow_username)
 {
     $model = new ModelUser();
     $model->unfollow($_SESSION["username"], $unfollow_username);
     header('Location: index.php');
 }