On Mon, 2007-06-18 at 21:57 -0400, Ron Piggott wrote: > If > > $expiry_date = "2007-10-17"; > > How do I add 7 days to this? I know the strtotime("+7 days"); command, > but don't know how to make it work with a date that isn't today. You would do: strtotime( '+7 days', $time ); The $time is a unix timestamp... so you'll need to convert $expiry_date to a unix timestamp. You can take a look at the mktime() function for more information. Cheers, Rob. -- .------------------------------------------------------------. | InterJinn Application Framework - http://www.interjinn.com | :------------------------------------------------------------: | An application and templating framework for PHP. Boasting | | a powerful, scalable system for accessing system services | | such as forms, properties, sessions, and caches. InterJinn | | also provides an extremely flexible architecture for | | creating re-usable components quickly and easily. | `------------------------------------------------------------' -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php