$_POST["rang"], "promo" => $_POST["promo"], "libelle" => $_POST["libelle"] ]); } function alter_document() { $document = new Document($_POST["id"]); $document->setRang($_POST["rang"]); $document->setPromo($_POST["promo"]); $document->setLibelle($_POST["libelle"]); $document->setFichier($_POST["fichier"]); } function delete_document() { (new File($_POST["id"]))->erase(); }