}); $app->post('/addRecette', function () { //Ajoute une recette $recette = Recette::addRecette($_POST['nomRecette'], $_POST['complexite'], $_POST['note'], $_POST['temps'], $_POST['nbPersonne'], $_POST['description']); }); $app->post('/addRecette_ingr', function () { //Ajoute une recette $recette = Recette::addRecette_ingr($_POST['ingredientId'], $_POST['recetteId'], $_POST['quantite']); }); $app->put('/ModifRecette', function () { //Ajoute une recette $recette = Recette::ModifRecette($_POST['nomRecette'], $_POST['complexite'], $_POST['note'], $_POST['temps'], $_POST['nbPersonne'], $_POST['description'], $_POST['id']); }); $app->delete('/DelRecette', function () { //Ajoute une recette $recette = Recette::DelRecette($_POST['id']); }); $app->run(); ?>