getConnection(); $pdo->exec("CREATE TABLE IF NOT EXISTS turnero_chat_plantillas ( template_id INT NOT NULL, PRIMARY KEY (template_id) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4"); $rows = $pdo->query( "SELECT t.id, t.name, t.template_name, t.language_code, t.body_text, t.header_text, t.header_type, t.footer_text, t.example_parameters, t.status FROM turnero_chat_plantillas p JOIN message_templates t ON t.id = p.template_id ORDER BY t.name ASC" )->fetchAll(PDO::FETCH_ASSOC); echo json_encode(['ok' => true, 'data' => $rows]); } catch (Throwable $e) { http_response_code(500); echo json_encode(['ok' => false, 'error' => $e->getMessage()]); }