RE: 30 days before

2000-10-05 Thread Ed Moon
$now = time; # get current time in seconds since epoch $then = $now - (30*24*60*60); # subtract 30 days worth of seconds ($sec,$min,$hour,$mday,$mon,$year,$wday,$yday,$isdst) = localtime($then); -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Steve Reule

RE: 30 days before

2000-10-05 Thread Joe Devine
Use the date-calc module, which had dateadd functions as well as many other useful items. Joe Devine -Original Message- From: Steve Reule [mailto:[EMAIL PROTECTED]] Sent: Thursday, October 05, 2000 4:33 PM To: [EMAIL PROTECTED] Subject: 30 days before Thanks to the people who respon