summaryrefslogtreecommitdiff
path: root/cpan/CGI/examples/nph-clock.cgi
diff options
context:
space:
mode:
Diffstat (limited to 'cpan/CGI/examples/nph-clock.cgi')
-rwxr-xr-xcpan/CGI/examples/nph-clock.cgi18
1 files changed, 18 insertions, 0 deletions
diff --git a/cpan/CGI/examples/nph-clock.cgi b/cpan/CGI/examples/nph-clock.cgi
new file mode 100755
index 0000000000..f34fde27e9
--- /dev/null
+++ b/cpan/CGI/examples/nph-clock.cgi
@@ -0,0 +1,18 @@
+#!/usr/local/bin/perl -w
+
+use CGI::Push qw(:standard :html3);
+
+do_push(-next_page=>\&draw_time,-delay=>1);
+
+sub draw_time {
+ my $time = localtime();
+ return start_html('Tick Tock'),
+ div({-align=>CENTER},
+ h1('Virtual Clock'),
+ h2($time)
+ ),
+ hr,
+ a({-href=>'index.html'},'More examples'),
+ end_html();
+}
+