hi need a quick help about adding a date example: i have a date format of 2006-03-22 then i would like to add 1 day to become 2006-03-23.. anyidea? plss help. thankss....
Probably this is not the most elegant way to do it, but seems to work quite fine: $date = "2006-03-22"; $date = date("Y-m-d", (strtotime($date)+86400)) Code (markup):