in reply to Re: CGI script to create a HTML document
in thread CGI script to create a HTML document
#!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;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: CGI script to create a HTML document
by Melly (Chaplain) on Nov 29, 2006 at 17:40 UTC |