-
Notifications
You must be signed in to change notification settings - Fork 0
/
formulario.php
63 lines (47 loc) · 1.13 KB
/
formulario.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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
<?php
$copias = $_POST['copias'];
$color = $_POST['c'];
$res = $_POST['resolucion'];
arreglar
$tarifap=0;
$tarifac=0;
$tarifares=0;
$paginas=
$numerof=11;
$tarifatotal=0;
if($paginas<5){
$tarifap=0.10;
}
else if($paginas>=5 && $paginas<11){
$tarifap=0.08;
}
else if($paginas>10){
$tarifap=0.07;
}
if($color=="co"){
$tarifac=0.05;
}
if($res>300){
$tarifares=0.02;
}
$tarifatotal=($tarifap*$paginas)+($tarifac*$numerof)+($tarifares*$numerof);
$message="El precio de tu solicitud es de ";
$message.=$tarifatotal;
$message.=" euros. ¿Estás interesado en la solicitud del álbum?";
echo "<script>javascript:
var ask = confirm('".$message."');
if(ask==true)
{
window.location = 'respuestaalbum.php';
}
else
{
window.location = 'formulario.html';
}
</script>";
echo $paginas, $color, $res;
echo "<br>";
echo $tarifap,$tarifac,$tarifares;
echo "<br>";
echo $tarifatotal;
?>