getConnection(); $stmt = $pdo->prepare("SELECT * FROM excel_templates WHERE id = ?"); $stmt->execute([$id]); $template = $stmt->fetch(PDO::FETCH_ASSOC); if (!$template) { header("Location: template_dashboard.php?status=error&message=" . urlencode("Template not found")); exit; } // Recupera tutte le routine dal database $stmt = $pdo->prepare("SELECT * FROM routine"); $stmt->execute(); $routines = $stmt->fetchAll(PDO::FETCH_ASSOC); ?> Edit Template <?= htmlspecialchars($titlewebsite, ENT_QUOTES, 'UTF-8'); ?>
Update XLS Template

Edit the following form in order to update the selected import XLS template

Mandatory Fields

  • Template Name
  • Row Header and Column Header: where the title of the excel starts
  • Schema
Edit Template:

Cancel