public function uploadPicture($picture_name = null)
 {
     parent::checkDisconnectedEntry("index.php?page=connection");
     if (!isset($picture_name)) {
         $this->checkPOST();
         $this->uploadOnDatabase();
     }
     $this->uploadOnServer($picture_name);
     $this->cleanPOST();
     header('Location: index.php');
 }