in reply to Re: Re: Re: Class Questions, OOP, and mod_perl -- HELP
in thread Class Questions, OOP, and mod_perl -- HELP
but it seemed more right just sending the apache ref to the user, and have the user create internal refs to the session/form info it needs on init$r = apache request; $session_and_form = new myPackage::session_and_form( \$r); $user = new myPackage::User(\$session); $page = new myPackage::Page(\$user)
|
|---|