in reply to Re: time in mod_perl
in thread time in mod_perl
#!/usr/bin/perl # FILE: test_time_01.pl use warnings; use strict; use CGI qw(:standard escapeHTML); my $t = time; print start_multipart_form(-action => url()), p header(), start_html("test"), p ("The value of time is $t. <br><br>"), end_form();
Edit: g0n - code tags
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: time in mod_perl
by jettero (Monsignor) on Mar 27, 2007 at 19:24 UTC | |
|
Re^3: time in mod_perl
by Bruce32903 (Scribe) on Mar 27, 2007 at 19:51 UTC |