Re: Add a new param to Apache2::Request

2006-03-31 Thread Philip M. Gollucci
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

Add a new param to Apache2::Request

2006-03-31 Thread David Romero
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: