Kod PHP do otrzymania następnego dnia
$tomorrow = date("Y-m-d", strtotime("+1 day"));
Cooperative Cardinal
$tomorrow = date("Y-m-d", strtotime("+1 day"));
date('Y-m-d', strtotime('+1 day', strtotime($date)))
// Prints the day
echo date("l") . "<br>";
echo date("h");