in reply to Re^3: How to initialize a Global in a module (Uts,L)
in thread How to initialize a Global in a module

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.

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

Replies are listed 'Best First'.
Re^5: How to initialize a Global in a module (run-time)
by tye (Sage) on Oct 26, 2011 at 19:58 UTC

    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