PHP Slim Get POST parameters

1

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 



});
    
asked by Christian Gimenez 03.12.2016 в 14:02
source

1 answer

1
$data = $req->getParsedBody()['text'];

I used this and it worked.

    
answered by 03.12.2016 в 14:14