-
Notifications
You must be signed in to change notification settings - Fork 0
/
calcular.php
43 lines (33 loc) · 1.12 KB
/
calcular.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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
<?php
if (
isset($_POST["cidade-origem"]) && isset($_POST["cidade-destino"])
&& isset($_POST["distancia-entre-cidades"]) && isset($_POST["quantia-pedagios"])
) {
$cidadeOrigem = $_POST["cidade-origem"];
$cidadeDestino = $_POST["cidade-destino"];
$distanciaEntreCidades = $_POST["distancia-entre-cidades"];
$quantiaPedagios = $_POST["quantia-pedagios"];
$valor = number_format(($distanciaEntreCidades * 6) + ($quantiaPedagios * 9.40), 2, ',', '.');
$texto = "A viagem de $cidadeOrigem à $cidadeDestino irá custar o valor total de R$";
?>
<!DOCTYPE html>
<html lang="pt-BR">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="styles.css" rel="stylesheet" />
<title>Resultado</title>
</head>
<body>
<div id="circle-result-container">
<h1>Valor total:</h1>
<p><?= $texto?><span class="letra-grande"><?=$valor?></span></p>
</div>
</body>
</html>
<?php
} else {
echo "<h1>Você não enviou as informações corretamente</h1>";
exit;
}