RE: use CGI qw(:cgi-lib :standard);

2003-11-12 Thread Thomas Bätzler
Yehezkiel B Syamsuhadi <[EMAIL PROTECTED]> asked: > What does this line mean? > > use CGI qw(:cgi-lib :standard); The qw operator makes a text into a list by splitting at the whitespace. That list is passed to the module as an argument. In CGI.pm's case these arguments are

RE: use CGI qw(:cgi-lib :standard);

2003-11-12 Thread Bob Showalter
Yehezkiel B Syamsuhadi wrote: > What does this line mean? > > use CGI qw(:cgi-lib :standard); > > I know that "use CGI;" means to use CGI module but what does > qw(:cgi-lib :standard) that follow "use CGI" mean? qw() is a way of building a list without hav

use CGI qw(:cgi-lib :standard);

2003-11-12 Thread Yehezkiel B Syamsuhadi
What does this line mean? use CGI qw(:cgi-lib :standard); I know that "use CGI;" means to use CGI module but what does qw(:cgi-lib :standard) that follow "use CGI" mean? Thanks, YBS -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]