To jest twój problem:
$temp[] = array('v' => date('D M d Y H:i:s O',$row['HireDate']));
Daty muszą być wprowadzane w bardzo konkretnym formacie ciągu:"Date(year, month, day, hours, minutes, seconds)"
, gdzie month
jest indeksem liczonym od zera dla miesiąca, a wszystko po month
jest opcjonalne (domyślnie 1 dla day
i 0 dla wszystkiego innego). Aby wprowadzić datę w tym formacie, wykonaj coś takiego:
$date = date('D M d Y H:i:s O',$row['HireDate']));
$year = (int) date_format($date, 'Y');
$month = ((int) date_format($date, 'm')) - 1; // adjust to javascript's 0-indexed months
$day = (int) date_format($date, 'd');
$hours = (int) date_format($date, 'H');
$minutes = (int) date_format($date, 'i');
$seconds = (int) date_format($date, 's');
$temp[] = array('v' => "Date($year, $month, $day, $hours, $minutes, $seconds");