Get Dates you want in PHP
Since, I started with Get the First day of the Week with an Exact Date, I've found it better to just continue and show anyone who can find this useful how to get various dates using PHP.
Get Next Week
date('Y', time()+604800));
Get Last Week
date('Y', time()+604800));
Get Previous Day
date('Y m d', mktime(0, 0, 0, $month, $day-1, $year));
date('Y m d', time()-86400);
Get Next Day
date('Y m d', mktime(0, 0, 0, $month, $day+1, $year));
date('Y m d', time()+86400);
I, at least hope someone has found those snippets useful
Categories: How To
Tags: php
1 Comments


Waqas
Very helpful!
Thanks.
November 9th 2009