prepare("INSERT INTO special_promotions (name, description, discount_type, discount_value, start_date, end_date, is_active) VALUES (?, ?, ?, ?, ?, ?, ?)"); $stmt->execute([$name, $description, $discount_type, $discount_value, $start_date, $end_date, $is_active]); header('Location: promotions.php'); exit; } ?>

Add Promotion