I need to get the post parameters with slim framework php, this is my post route:
$app->post('/agregar', function ($req, $res) {
//obtiene e bodyParsed
$data = $req->getParsedBody();
//aca se puede aplicar un forEach para sacar todas las variable
//POST pero necesito solo una variable
});