LlangerOct 12, 2004Post #1 Tuesday, October 12, 2004 12:22 PM Hi, This is probably a very stupid question, but here it goes. How do I get yesterday's date? In this format: date("m.d.Y"); Is there anyway I can just subtract 1 from the day?
DdrawmackOct 12, 2004Post #2 Tuesday, October 12, 2004 12:24 PM <? $ts = strtotime('-1 day'); date("m.d.Y",$ts); ?>