Hello,
Im working on a scheduling system. But the problem is, my server time is 8 hours behind my time.
I understand how to get the current date in php :
$date = date("Y-m-d H:i:s");
How would I go about adding 8 hours to that date?
Thanks, Craig
$date = date('Y-m-d H:i:s', time() + 28800);
Thanks! Perfect 😃