perl with cgi

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • sindhu
    New Member
    • Oct 2006
    • 53

    perl with cgi

    Hello,
    I am new to perl cgi.
    i want to know what happens when we include
    use CGI;
    in the perl script
  • numberwhun
    Recognized Expert Moderator Specialist
    • May 2007
    • 3467

    #2
    Originally posted by sindhu
    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.

    Regards,

    Jeff

    Comment

    Working...