in reply to Re: Days since is broken!
in thread Days since is broken!
So you don't think it's the code?#!/usr/bin/perl use strict; use warnings; use CGI qw/:standard/; use CGI::Carp 'fatalsToBrowser'; use Time::Local; print header; my $start = timegm(0, 0, 0, 9, 1, 2004); printf "%d", int((timegm(localtime) - $start)/(24*60*60));
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
•Re: Re: Re: Days since is broken!
by merlyn (Sage) on May 19, 2004 at 16:31 UTC | |
|
Re: Re: Re: Days since is broken!
by Anonymous Monk on May 19, 2004 at 17:42 UTC |