in reply to Using Apache2::RequestRec and pnotes

If you have $r that gets passed to the handler, you can at any phase during a single request say:
$r->pnotes( 'name_of_struct', $hash_of_dot_dot_dot );
Then, at any later point in the same request say:
$r->pnotes( 'name_of_struct' );
Phil

Update: Fixed copy and paste mistake in referring to $r.