forked from U-M-R/PA_Grupo04
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ej2.php
135 lines (109 loc) · 3.63 KB
/
ej2.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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
<?php
function mostrarTabla($importe,$nmeses){
$acum=0;
$restante=$importe;
$aportacion=$importe/$nmeses;
$array = array();
for($i=0;$i<$nmeses;$i++){
if($i==0){
$fecha=ucfirst(strftime("%B %Y")).' (actual)';
}else{
$fecha=ucfirst(strftime("%B %Y",strtotime(date("d-m-Y")."+ ".$i." month")));
}
$acum+=$aportacion;
$restante-=$aportacion;
$array[]=array($fecha,$aportacion,$acum,$restante);
}
return $array;
}
?>
<html>
<head>
</head>
<body>
<?php
if(!isset($_POST["submit"])){
?>
<form name="form" method="POST">
<label for="nombre">Nombre: </label>
<input type="text" id="nombre" name="nombre"/> <br>
<label for="dni">DNI: </label>
<input type="text" id="dni" name="dni"/><br>
<label for="deudat">Deuda total: </label>
<input type="text" id="deudat" name="deudat"/><br>
<label for="nmeses">Numero de meses: </label>
<input type="text" id="nmeses" name="nmeses"/><br>
<label for="anotaciones">Anotaciones o Comentarios</label>
<input type="textarea" id="anotaciones" name="anotaciones"/>
<br/><br/>
<input type="radio" id="radio" value="retraso" name="retraso"/>Aplicar retraso en el pago<br>
<input type="radio" id="radio" value="amortizacion" name="amortizacion"/>Aplicar amortización<br>
<input type="radio" id="radio" value="nada" name="nada"/>No hacer nada<br>
<input type="submit" id="submit" name="submit" value="submit"/>
</form>
<?php
}else{
if(preg_match("#d+(?:.d{1,2})?#",$_POST['deudat'])!=false){
echo "ERROR en el valor";
}
if(preg_match("/^[a-zA-Z'-]+$/",$_POST['nombre'])!=true){
echo "ERROR en el nombre";
}
if($_POST['nmeses']<0){
echo "ERROR en el nmeses";
}
if(preg_match('/^[0-9]{8}[A-Z]{1}$/', $_POST['dni'])!=true){
echo "ERROR en el dni";
}
$dni=$_POST['dni'];
$nombre=$_POST['nombre'];
$importe=$_POST['deudat'];
$nmeses=$_POST['nmeses'];
$anotaciones=$_POST['anotaciones'];
$array = mostrarTabla($importe,$nmeses);
?>
<table border=2 width="50%">
<tr>
<td colspan="2">Presupuesto para: <?php echo $nombre ?></td>
<td colspan="2">DNI: <?php echo $dni ?></td>
</tr>
<tr>
<td>Importe total de la deuda</td>
<td><?php echo $importe ?></td>
<td>Total de meses</td>
<td><?php echo $nmeses ?></td>
</tr>
<tr>
<td>Anotaciones</td>
<td colspan="3"><?php echo $anotaciones ?></td>
</tr>
<tr>
<td>Otros escenarios</td>
<td colspan="3">
<p><?php if(isset($_POST['nada'])){echo 'X';}else{echo 'o';}?> No hacer nada</p>
<p><?php if(isset($_POST['retraso'])){echo 'X';}else{echo 'o';}?> Aplicar retraso en el pago</p>
<p><?php if(isset($_POST['amortizacion'])){echo 'X';}else{echo 'o';}?> Aplicar amortización</p>
</td>
</tr>
<tr>
<td>Fecha </td>
<td>Aportación</td>
<td>Importe pagado</td>
<td>Importe restante</td>
</tr>
<?php for($i=0;$i<$nmeses;$i++){?>
<tr>
<?php for($j=0;$j<count($array[$i]);$j++){?>
<td><?php echo $array[$i][$j] ?></td>
<?php } ?>
</tr>
<?php } ?>
</table>
<?php
}
?>
<?php
?>
</body>
</html>
<?php "Jaja" ?>