Trying to display this below to print out
[Date.UTC(09:54:36),15297]
so I can use the data in highcharts.
/* Retrieve and display the results of the query. */
$Hour = '';
$ActualLoadMW = '';
$finalString = '';
while( $row = sqlsrv_fetch_array( $stmt, SQLSRV_FETCH_ASSOC))
{
//echo $row['Hour'].", ".$row['ActualLoadMW']."\n";
$Hour= $Hour.", ".convertTime($row['Hour']);
$ActualLoadMW = $ActualLoadMW.", ".$row['ActualLoadMW'];
$finalString = $finalString.", [Date.UTC"."(".convertTime($row['Hour']).$row['ActualLoadMW'];
}