Files
shape3d.it/tools/printers.php
2026-01-23 23:45:16 +01:00

7 lines
179 B
PHP

<?php
function tools_fetch_active_printers(PDO $pdo): array
{
$stmt = $pdo->query("SELECT * FROM printers WHERE is_active = 1 ORDER BY name");
return $stmt->fetchAll();
}