Bestilling mottatt

Takk for din bestilling

$firstName = htmlspecialchars($_POST['firstName']); $lastName = htmlspecialchars($_POST['lastName']); $phone = htmlspecialchars($_POST['phone']); $email = htmlspecialchars($_POST['email']); $address = htmlspecialchars($_POST['address']); $payment = htmlspecialchars($_POST['payment']); $quantity1 = intval($_POST['quantity1']); $quantity2 = intval($_POST['quantity2']); $quantity3 = intval($_POST['quantity3']); $quantity4 = intval($_POST['quantity4']); $prices = [229, 269, 369, 299]; $quantities = [$quantity1, $quantity2, $quantity3, $quantity4]; $total = 0; $total += $prices[$i] * $quantities[$i]; } $discountCode = htmlspecialchars($_POST['discountCode']); $discount = 0; switch ($discountCode) { case 'Bedre1': $discount = 0.26; break; case 'Bedre2': $discount = 0.20; break; case 'Bedre3': $discount = 0.20; break; } $discountAmount = $total * $discount; $finalTotal = $total - $discountAmount; echo "

Fornavn: $firstName

"; echo "

Etternavn: $lastName

"; echo "

Telefonnummer: $phone

"; echo "

E-postadresse: $email

"; echo "

Postadresse: $address

"; echo "

Betalingsalternativ: $payment

"; echo "

Mammas magiske hemmelighet: $quantity1 stk

"; echo "

Jhula - følelser i sving av Hassan Ali Syed: $quantity2 stk

"; echo "

Krussedullehår av Marta Mboka Tveit: $quantity3 stk

"; echo "

Jakten på nabotrollet av Salamatu Winningah: $quantity4 stk

"; echo "
Rabatt sum: " . number_format($discountAmount, 2) . " NOK
"; echo "
Total sum: " . number_format($finalTotal, 2) . " NOK
"; ?>

Du vil motta ordrebekreftelse på e-post når din bestilling er behandlet.