in reply to Re^2: How to initialize a Global in a module
in thread How to initialize a Global in a module

If you refuse to have any of the things you learn be lessons learned by reading the documentation or source code of another module, then you will likely miss out on a lot of opportunities to learn.

- tye        

  • Comment on Re^3: How to initialize a Global in a module (Uts,L)

Replies are listed 'Best First'.
Re^4: How to initialize a Global in a module (Uts,L)
by Henric (Initiate) on Oct 26, 2011 at 19:36 UTC

    No, that seems to be a misundestanding. Of course I'm willing to read other peoples code. I looked around in PAB3, but the code I've already seen there looks pretty complex and did not give me a hint at the moment.

      I saw the answer just glancing at the documentation.

      use iPLib::iCFG; use iPLib::iDoc; use iPLib::iRequest; #... ... $_POST->{'TESTNAME'} ...

      vs.

      use PAB3::CGI qw(:default); #... PAB3::CGI::init(); #... ... $_REQUEST{'cmd'} ...

      - tye