Thanks for the response Malcom. This is what i have:
my $req = $r->pool();
my $cookie = APR::Request::Cookie->new
($req,
name => "test",
value => { product_id => $product_id,
qty => $qty },
path => '/',
domain => "192.168.1.155",
On Thursday 23 June 2005 12:29 pm, Gokul P. Nair wrote:
> Also $req needs to be an object of type APR::Pool and
> in the documentation for APR::Pool it is suggested
> that it is good to use a request pool for these short
> scoped requests. So would $req be created like this ?
> $req = APR::Request