I want to get the yesterday date using specific date format in php this is the format:
$today = date(\"d.m.Y\"); //15.04.2013
Is it possible?>
there you go
date('d.m.Y',strtotime("-1 days"));
this will work also if month change