Hi Tris,

> But is there an easy was to calculate 90 days 
> from the timestamp...

There are 86400 seconds in a day... can't you just do something like:
  
  $timestamp -= (86400 * 90);

Or even

  $timestamp -= 7776000; // 90 days

Cheers
Jon

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to