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