39 lines
1.4 KiB
PHP
39 lines
1.4 KiB
PHP
<?php
|
|
require __DIR__ . '/../../includes/auth.php';
|
|
require_login('/christmas-list.php');
|
|
|
|
require __DIR__ . '/../../includes/db.php';
|
|
|
|
if ($_SERVER['REQUEST_METHOD'] === 'POST') {
|
|
$year = (int)($_POST['year'] ?? date('Y'));
|
|
$adult_name = trim($_POST['adult_name'] ?? '');
|
|
$child_name = trim($_POST['child_name'] ?? '');
|
|
$occasion = trim($_POST['occasion'] ?? ''); // TIO / NADAL / REIS
|
|
$gift_desc = trim($_POST['gift_description'] ?? '');
|
|
$product_link = trim($_POST['product_link'] ?? '');
|
|
$amount = $_POST['amount'] !== '' ? (float)$_POST['amount'] : 0.0;
|
|
|
|
if ($adult_name && $child_name && $occasion && $gift_desc) {
|
|
$stmt = $pdo->prepare("
|
|
INSERT INTO pf_christmas_gifts
|
|
(year, adult_name, child_name, occasion, gift_description, product_link, amount)
|
|
VALUES
|
|
(:year, :adult_name, :child_name, :occasion, :gift_description, :product_link, :amount)
|
|
");
|
|
|
|
$stmt->execute([
|
|
'year' => $year,
|
|
'adult_name' => $adult_name,
|
|
'child_name' => $child_name,
|
|
'occasion' => $occasion,
|
|
'gift_description'=> $gift_desc,
|
|
'product_link' => $product_link ?: null,
|
|
'amount' => $amount,
|
|
]);
|
|
}
|
|
}
|
|
|
|
// Retour à la page Christmas list
|
|
header('Location: /christmas-list.php');
|
|
exit;
|