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
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");