This commit is contained in:
Alan
2026-02-14 19:34:54 +03:00
commit 5c3329238b
867 changed files with 214778 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
<?php
chdir('../..');
require_once('api/Simpla.php');
$simpla = new Simpla();
$limit = 100;
$results = $simpla->services->get_brands_pages($simpla->request->get('id', 'integer'));
header("Content-type: application/json; charset=UTF-8");
header("Cache-Control: must-revalidate");
header("Pragma: no-cache");
header("Expires: -1");
print json_encode($results);