Accessing Internal CGI Object
Accessing Internal CGI Object
- In function-oriented style, a CGI object named $CGI::Q is created behind the scenes
- Can access it directly if you want
- Warning: module creates this object as needed, such as after a param() call
use CGI ':standard';@fields = param();$CGI::Q->save(OUT);