David Romero wrote:
I try to add new param to Apache2::Reques and i have this error
Can't locate object method "add" via package "APR::Request::Param::Table"
this is my code
$req = Apache2::Request->new();
$req->body->add(new_param => "value");
> $req = Apache2::Request->new($r);
Note $r
I try to add new param to Apache2::Reques and i have this error
Can't locate object method "add" via package "APR::Request::Param::Table"
this is my code
$req = Apache2::Request->new();
$req->body->add(new_param => "value");
help say this
$req->param("foo" => "bar"); # NO: