view scripts/pjx_NO_CACHE_callee.pl @ 4:90181bbf7a0c boosterpack

[svn r6] added Dylan's awesome stuff.
author robert
date Tue, 08 Sep 2009 06:05:47 -0400
parents 477258d09353
children
line wrap: on
line source
1 #!C:/strawberry/perl/bin/perl.exe
3 use strict;
4 use CGI;
6 my $q = new CGI;
7 print $q->header();
9 my ($sec,$min,$hour,$mday,$mon,$year,$wday,
10 $yday,$isdst)=localtime(time);
12 printf "%4d-%02d-%02d %02d:%02d:%02d\n",
13 $year+1900,$mon+1,$mday,$hour,$min,$sec;