Jelajahi Sumber

Updated PHP file for Category to not include item:

Axel Nordh 3 tahun lalu
induk
melakukan
2801a27041
1 mengubah file dengan 1 tambahan dan 2 penghapusan
  1. 1 2
      ServerFiles/Categories.php

+ 1 - 2
ServerFiles/Categories.php

@@ -23,6 +23,5 @@ $sth->setFetchMode(PDO::FETCH_ASSOC);
 
 $result = $sth->fetchAll();
 if (count($result) > 0) {
-    $json =  json_encode($result, JSON_UNESCAPED_UNICODE);
-    echo "{\"items\":" . $json . "}";
+    echo json_encode($result, JSON_UNESCAPED_UNICODE);
 }