[snip] How can I look back Business Days. I would like to go back from a certain date, like 7 business days. Is there a simple way other then looping and checking for the day of the week? [/snip]
$sevendaysago = date("Y-m-d", mktime(date("h")-168)); This will give you the date exactly seven days ago, then you can test what day (Mon - Fri). If it is Saturday then you could subtract 24 more hours, if Sunday, 48 more hours. HTH! Jay "Of all the things I’ve lost, I miss my mind the most" ************************************* * Want to meet other PHP developers * * in your area? Check out: * * http://php.meetup.com/ * * No developer is an island ... * ************************************* -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php