Gestione Linee di Produzione
Elenco Linee
getConnection(); $stmt = $pdo->query("SELECT * FROM production_lines ORDER BY line_number ASC"); if ($stmt->rowCount() === 0) { echo ""; } else { while ($row = $stmt->fetch(PDO::FETCH_ASSOC)) { $badge = $row['status'] === 'active' ? "Attiva" : "Inattiva"; echo ""; } } ?>
ID Numero Nome Modello Marca Stato Azioni
Nessuna linea di produzione presente
{$row['id']} {$row['line_number']} " . htmlspecialchars($row['name']) . " " . htmlspecialchars($row['model']) . " " . htmlspecialchars($row['brand']) . " {$badge}