Hello,
I am new to perl cgi.
i want to know what happens when we include
use CGI;
in the perl script
When you include that line at the beginning of your script, you are telling the Perl interpreter that you are going to be utilizing the CGI module when coding your script. That link is the documentation for that module.
Once you include that line, you can then use the methods and such from that module, in your script.
Comment