atnonis has asked for the wisdom of the Perl Monks concerning the following question:
and when im running the program i get the following error transliteration replacement not terminated at phbookad.pl line 23. the 23 line is ); #Closing table i cant figure out what the problem is. i have read the CGI.pm about tables but...#!d:\perl\bin\perl.exe -w use strict; use CGI qw(:all); my $cgi = new CGI; #Initialize phonebooks variables my $name = param('name'); my $surename = param('surename'); my $phone = param('phone'); my $selfphone = param('selfphone'); my $address = param('address'); my $location = param('location'); my $email = param('email'); print $cgi -> header, start_html(-title=>"Previewing $name ${surename}! entry", + -style=>{'src'=>'../htdocs/style.css'}). $cgi -> table ( #opening table tr({-align=>CENTER,-valign=>TOP}, [ #TR td(['Name', 'Surename','Phone']) ] #TR ) ); #Closing table $cgi->end_html;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: cgi programming...
by pfaut (Priest) on Jan 10, 2003 at 15:38 UTC | |
|
Re: cgi programming...
by dragonchild (Archbishop) on Jan 10, 2003 at 15:53 UTC | |
by atnonis (Monk) on Jan 12, 2003 at 18:51 UTC | |
by dragonchild (Archbishop) on Jan 13, 2003 at 14:54 UTC | |
|
Re: cgi programming...
by Fletch (Bishop) on Jan 10, 2003 at 15:38 UTC | |
|
Re: cgi programming...
by rdfield (Priest) on Jan 10, 2003 at 15:39 UTC | |
|
Re: cgi programming...
by poj (Abbot) on Jan 10, 2003 at 18:18 UTC | |
by atnonis (Monk) on Jan 12, 2003 at 18:55 UTC | |
by poj (Abbot) on Jan 12, 2003 at 19:09 UTC | |
by atnonis (Monk) on Jan 12, 2003 at 19:18 UTC | |
by poj (Abbot) on Jan 12, 2003 at 19:28 UTC |