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