Help for this page

Select Code to Download


  1. or download this
    package JPI::Common;
    use strict;
    ...
      }
    }
    1;
    
  2. or download this
    package JPI::Test;
    use strict;
    ...
      $q->param('test','value changed');
    }
    1;
    
  3. or download this
    #!/usr/bin/perl -w
    use strict;
    ...
    print 'After: ',
          $q->param('test'),
          "\n";
    
  4. or download this
    Before: initial value
    After: value changed