50-50 has asked for the wisdom of the Perl Monks concerning the following question:
#!/usr/bin/perl -w use CGI qw(:standard); use Time::localtime; $now = ctime(); print header(), start_html("Time"), h1("Here's the time:"); print p("The time is $now."); print end_html();
2001-03-21 Edit by Corion : Changed italics to CODE tags.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Newbie CGI Question
by jorg (Friar) on Mar 22, 2001 at 16:51 UTC | |
|
Re: Newbie CGI Question
by coreolyn (Parson) on Mar 22, 2001 at 19:24 UTC | |
by arturo (Vicar) on Mar 22, 2001 at 21:08 UTC | |
|
Re: Newbie CGI Question
by fpi (Monk) on Mar 22, 2001 at 20:44 UTC | |
|
Re: Newbie CGI Question
by faerloche (Sexton) on Mar 22, 2001 at 19:12 UTC |