I am trying to assign tomorrow date to a variable in my program call $tomorrow, but i just cant seem to work out how to do it. Have done today's one by doing
$date = date('Y-m-d');
after reseraching I thought it will make sense to do this
$tomorrow = mktime(0, 0, 0, date("m") , date("d")+1, date("Y"));
but this produced a long number (1141689600). making no sense.
I want the output to be as the same format as the date function used above.
Please please please please can someone help me. Thanks in advance