7 lines
264 B
PHP
Executable File
7 lines
264 B
PHP
Executable File
<?php
|
|
// public/api/materials.php
|
|
header('Content-Type: application/json; charset=utf-8');
|
|
require __DIR__ . '/_db.php';
|
|
$stmt = $pdo->query("SELECT * FROM materials WHERE is_active = 1 ORDER BY code");
|
|
echo json_encode($stmt->fetchAll(), JSON_UNESCAPED_UNICODE);
|