this is a script that im using
#!/usr/bin/perl -wT
use strict;
use CGI;
my $q = new CGI;
my $timestamp = localtime;
print $q->header( "text/html" ),
$q->start_html( -title => "The Time", -bgcolor => "#ffffff" ),
$q->h2( "Current Time" ),
$q->hr,
$q->p( "The current time according to this system is: ",
$q->b( $timestamp ) ),
$q->end_html;
Thanks
[edited by: phranque at 9:01 pm (utc) on Aug. 5, 2008]
[edit reason] hosting specifics [/edit]
[edited by: phranque at 9:01 pm (utc) on Aug. 5, 2008]
[edit reason] hosting specifics [/edit]