61 lines
2.5 KiB
PHP
61 lines
2.5 KiB
PHP
<?php
|
|
require_once 'header.php';
|
|
require_once '../db/config.php';
|
|
|
|
if ($_SERVER['REQUEST_METHOD'] === 'POST') {
|
|
$name = $_POST['name'];
|
|
$description = $_POST['description'];
|
|
$discount_type = $_POST['discount_type'];
|
|
$discount_value = $_POST['discount_value'];
|
|
$start_date = $_POST['start_date'];
|
|
$end_date = $_POST['end_date'];
|
|
$is_active = isset($_POST['is_active']) ? 1 : 0;
|
|
|
|
$stmt = db()->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;
|
|
}
|
|
|
|
?>
|
|
|
|
<div class="container mt-4">
|
|
<h2>Add Promotion</h2>
|
|
<form method="post">
|
|
<div class="form-group">
|
|
<label for="name">Name</label>
|
|
<input type="text" class="form-control" id="name" name="name" required>
|
|
</div>
|
|
<div class="form-group">
|
|
<label for="description">Description</label>
|
|
<textarea class="form-control" id="description" name="description"></textarea>
|
|
</div>
|
|
<div class="form-group">
|
|
<label for="discount_type">Discount Type</label>
|
|
<select class="form-control" id="discount_type" name="discount_type">
|
|
<option value="percentage">Percentage</option>
|
|
<option value="fixed">Fixed</option>
|
|
</select>
|
|
</div>
|
|
<div class="form-group">
|
|
<label for="discount_value">Discount Value</label>
|
|
<input type="number" class="form-control" id="discount_value" name="discount_value" step="0.01" required>
|
|
</div>
|
|
<div class="form-group">
|
|
<label for="start_date">Start Date</label>
|
|
<input type="datetime-local" class="form-control" id="start_date" name="start_date" required>
|
|
</div>
|
|
<div class="form-group">
|
|
<label for="end_date">End Date</label>
|
|
<input type="datetime-local" class="form-control" id="end_date" name="end_date" required>
|
|
</div>
|
|
<div class="form-check">
|
|
<input type="checkbox" class="form-check-input" id="is_active" name="is_active" value="1" checked>
|
|
<label class="form-check-label" for="is_active">Active</label>
|
|
</div>
|
|
<button type="submit" class="btn btn-primary">Add Promotion</button>
|
|
</form>
|
|
</div>
|
|
|
|
<?php require_once 'footer.php'; ?>
|