- Joined
- Nov 12, 2005
- Posts
- 278
- Reaction score
- 5
Been refactoring a lot of our code this week and will be sharing snippets if anyone is interested. Let Me Know and I will post more.
Usage:
Nice and Simple I think..
PHP:
function getDropDate ($date)
{
$newdate = strtotime('+92 day', strtotime($date));
$newdate = date('Y-m-d', $newdate);
return $newdate;
}
PHP:
$date = '2011-08-21';
$dropdate = getDropDate($date);
echo $dropdate;