I am looking for help with my PHP code:
$date = date('m/d/Y h:i:s a', time());
echo "The current server timezone is: " . $date;
$jd=cal_to_jd(CAL_GREGORIAN,date("m"),date("d"),date("Y"));
echo(jddayofweek($jd,1));
Currently this outputs:
The current server timezone is: 03/28/2014 01:27:17 pm Friday
I am trying to make this display the current month, day of the month, and the current time plus twelve hours. For example, the output would be:
The current server timezone is: March 28 Friday at 1:27 am Friday
If anyone can help it will be greatly appreciated. Thank you for any help.