Commit 10e40a5d8efaad28c2a593bba83c7739ab81e511

Authored by Elena.Budnik
1 parent c1d7b8a4

add getDataUrl REST

Showing 1 changed file with 11 additions and 0 deletions   Show diff stats
src/DDSERVICES/REST/getDataUrl.php 0 → 100644
... ... @@ -0,0 +1,11 @@
  1 +<?php
  2 +
  3 + require_once 'DDserverWeb.php';
  4 +
  5 + $ddserveur_ws = new DDService();
  6 +
  7 + $res = $ddserveur_ws->getDataUrl($_GET['dataSet'],$_GET['StartTime'],$_GET['StopTime']);
  8 +
  9 + echo json_encode($res);
  10 +
  11 +?>
... ...