I really appreciate everybody's warmly help.
I am a new comer to perl. I don't fully understand the previous post's answer, so I really want to get help.
Here still have some compilation errors.(near $q->end_html)
Please assist me again.
Thank you very much!
#!C:/Perl/bin/perl
use strict;
use CGI::Pretty qw( -debug );
use CGI::Carp qw( fatalsToBrowser );
my $q = new CGI;
my $pay = $q->param('payment');
my $pay_text;
if ( $pay eq "discover" ) {
$pay_text = "Discover Card";
}
elsif ( $pay eq "master" ) {
$pay_text = "Master Card";
}
elsif ( $pay eq "check" ) {
$pay_text = "by check";
}
else {
$pay_text = "unknown method";
}
print $q->header,
$q->start_html( -title=>"Welcome",
-bgcolor=>"pink"),
$q->p( "Your name is ",
$q->b("name")),
$q->p({-style=>"text-decoration:underline"},"Your age is ",$q->t
+extfield(-name=>"age")),
$q->p( "Your method of payment is ",
$q->span({-style=>"color:blue"},$pay_text),
$q->end_html;
|