Hello,
I got this string "2004-02-19" (YYYY-MM-DD) and I need to turn it into a Date?
How do I do that?
"2004-02-19" is already a date. date() will always get todays date unless otherwise specified.
$tomorrow = mktime(0, 0, 0, date("m") , date("d")+1, date("Y"));