Does anyone have the code, or can code real fast, a way to show the next day from a date. Like include it so it shows todays date and then shows tomarrows date, along with yesterdays? Some help here?
basic PHP, try this...
$Yesterday = date('Y-m-d', time()-80000); $Today = date('Y-m-d'); $Tomorrow = date('Y-m-d', time()+80000);
Why 80'000 ?
I thought the day has 86'400s, or am i wrong here ? 🙂
Alright.. Worked nice a good. Thanks a lot everyone. This was a good help.