You're right. This got convoluted. Let's start over.

  package MyApp;
  my @context;

   sub dosomething {
        push @context, 'doingsomething';
   };

  1;


When this module is loaded into MP then given to each child process, for each request the user makes to a page that calls dosomething(), what is the INITIAL value of @context before dosomething() is called and alters it?

I'm assuming that it's always () before dosomething() changes it since it's declared as my.

-=CHris


Attachment: smime.p7s
Description: S/MIME Cryptographic Signature

Reply via email to