Forum Discussion
Realtime streaming dataset pb with historical data & report
- 6 years ago
Ok guys,
I got my soluce.
The json pushed data MUST be inclosed between [ and ] .
So just update my php scipt like this :
$arr = array(array('ca' => $ca_total, 'commandes' => $com_total,'date' => date('Y-m-d'), 'heure' => date('H:i:s'), 'ts' => date('Y-m-d H:i:s'), 'panier' => $panier_total));
$json = json_encode($arr);
That made the trick.
Ok guys,
I got my soluce.
The json pushed data MUST be inclosed between [ and ] .
So just update my php scipt like this :
$arr = array(array('ca' => $ca_total, 'commandes' => $com_total,'date' => date('Y-m-d'), 'heure' => date('H:i:s'), 'ts' => date('Y-m-d H:i:s'), 'panier' => $panier_total));
$json = json_encode($arr);
That made the trick.
It does not make the trick however, my reports works, but my dashboard becomes crazy...