Re: uninitialised variable error

2003-01-24 Thread WilliamGunther
In a message dated 1/24/2003 1:42:42 AM Eastern Standard Time, [EMAIL PROTECTED] writes: > #!/usr/bin/perl -w > # > # emails comments from the site to my address > # > use strict; > use CGI; > # > # > my $q = new CGI; > my $name = $q->param( "name" ); > my $email = $q->param( "email" ); > my $co

uninitialised variable error

2003-01-23 Thread Jimmy George
Hello Everyone The following code :- #!/usr/bin/perl -w # # emails comments from the site to my address # use strict; use CGI; # # my $q = new CGI; my $name = $q->param( "name" ); my $email = $q->param( "email" ); my $comments = $q->param( "comments" ); my $info = ("$name\n$email\n$comments\n");