-
Notifications
You must be signed in to change notification settings - Fork 0
/
calcula.php
26 lines (22 loc) · 940 Bytes
/
calcula.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<?php
session_start();
$_SESSION["price"] = [];
if ($_SERVER["REQUEST_METHOD"] == "POST") {
$precio = isset($_POST["precio"]) ? floatval($_POST["precio"]) : 0;
$descuento = isset($_POST["descuento"]) ? floatval($_POST["descuento"]) : 0;
if ($precio >= 0 && $descuento >= 0 && is_numeric($precio) && is_numeric($descuento)) {
if ($descuento >= $precio) {
array_push($_SESSION["price"], "El descuento no puede ser mayor que el precio original.");
} else {
$precio_final = $precio - ($precio * ($descuento / 100));
if ($precio_final<=0) {
array_push($_SESSION["price"], "Error.");
} else {
array_push($_SESSION["price"], "Precio final: " . $precio_final . "€");
}
}
} else {
array_push($_SESSION["price"], "Por favor, ingresa valores numéricos positivos.");
}
}
header("location: index.php");