## remember, only one. use CGI; # let it do it's own thing. use CGI (); # import NOTHING, thank you. use CGI qw(param redirect); # just param() and redirect() use CGI qw(:cgi); # just cgi stuff use CGI ':html'; # all the HTML[23] and netscape stuff use CGI qw/:html :form/; # all html + form html widgets use CGI ':standard'; # all cgi and HTML[23] and forms use CGI ':all'; # kitchen sink