-
Notifications
You must be signed in to change notification settings - Fork 0
/
nuevo_registro.php
136 lines (121 loc) · 5.53 KB
/
nuevo_registro.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
136
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Nuevo Registro</title>
<link rel="stylesheet" href="./styles/estilo.css?v=<?php echo time(); ?>">
</head>
<body>
<?php
require './database.php';
$insertSuccess = false;
$insertNoSuccess = false;
if(isset($_POST['enviar_x'])){
$previousPageInput = $_POST['previousPage'];
$getUltimaPaginaInput = $_POST['lastPageNumber'];
$nombre = $_POST['nombre'];
$apellidos = $_POST['apellido'];
$direccion = $_POST['direccion'];
$cp = $_POST['codigoPostal'];
$localidad = $_POST['localidad'];
$provincia = $_POST['provincia'];
$tlf1 = $_POST['tlf1'];
$tlf2 = $_POST['tlf2'];
$fax = $_POST['fax'];
$mail = $_POST['email'];
$sentencia="INSERT INTO contactes (nom,cognoms,direccio,localitat,provincia,cp,telefon1,telefon2,fax,mail) VALUES ('$nombre','$apellidos','$direccion','$localidad','$provincia','$cp','$tlf1','$tlf2','$fax','$mail')" ;
if (mysqli_query($db,$sentencia)) {
$insertSuccess = true ;
} else {
echo "Error: " . $sentencia ;
$insertNoSuccess = true;
}
}
$getBeforePage = false;
$getUltimaPagina = false;
if($_GET) {
if($_GET['from'] && $_GET['np']){
$previousPage = $_GET['from'];
$getBeforePage = true;
$ultimaPagina = $_GET['np'];
$getUltimaPagina = false;
}
}
if(isset($_POST['cancel_x'])){
$previousPageInput = $_POST['previousPage'];
header('Location:'.$previousPageInput);
}
?>
<div class="container">
<span class="tituloCrud">INSERTAR NUEVO REGISTRO</span>
<hr>
<div class="centrar">
<?php if($insertSuccess): ?>
<h1>Registro insertado</h1>
<div>
<div>
<a href="<?php echo $previousPageInput?>?pagina=<?php echo $getUltimaPaginaInput?>">Ver el registro en la tabla</a>
</div>
<br>
<div>
<a href="<?php echo $previousPageInput?>">Volver a la pagina de origen</a>
</div>
</div>
<?php exit; ?>
<?php endif ?>
<?php if($insertNoSuccess): ?>
<h1>Ha habido un error insertando el registro, intentelo mas tarde.</h1>
<a href="<?php echo $previousPageInput?>">Volver a la pagina de origen</a>
<?php exit; ?>
<?php endif ?>
<?php if($getBeforePage): ?>
<form action="<?php echo htmlentities($_SERVER['PHP_SELF']) ?>" method="post">
<div class="ChoicesRegistroTextAlign">
<fieldset>
<legend>Identificacion </legend>
<label for="nombre">Nombre:</label>
<input type="text" name="nombre" id="nombre" maxlength="30">
<label for="apellido"> Apellidos:</label>
<input type="text" name="apellido" id="apellido" size="30" maxlength="50">
</fieldset>
<fieldset>
<legend>Datos personales </legend>
<label for="direccion">Direccion:</label>
<input type="text" name="direccion" id="direccion" maxlength="50">
<label for="codigoPostal"> Codigo postal:</label>
<input type="text" name="codigoPostal" id="codigoPostal" size="5" maxlength="5">
<br>
<label for="localidad">Localidad:</label>
<input type="text" name="localidad" id="localidad" maxlength="30">
<br>
<label for="provincia">Provincia:</label>
<input type="text" name="provincia" id="provincia" maxlength="30">
</fieldset>
<fieldset>
<legend>Datos de contacto </legend>
<label for="tlf1">Tlf 1:</label>
<input type="text" name="tlf1" id="tlf1" size="12" maxlength="12">
<label for="tlf2"> Tlf 2:</label>
<input type="text" name="tlf2" id="tlf2" size="12" maxlength="12">
<label for="fax" >Fax:</label>
<input type="text" name="fax" id="fax" size="12" maxlength="12" >
<br>
<label for="email">Email:</label>
<input type="text" name="email" id="email" size="30" maxlength="30">
</fieldset>
</div>
<div>
<input type="hidden" name="previousPage" value="<?php echo $previousPage?>">
<input type="hidden" name="lastPageNumber" value="<?php echo $ultimaPagina?>">
<input type="image" src="./media/apply.png" class="imagenUltimaFila" alt="Aceptar" title="Aceptar" name="enviar">
<input type="image" class="imagenUltimaFila" src="./media/cancel.png" alt="Cancelar" title="Cancelar" name="cancel">
</div>
</form>
<?php else: ?>
<h1>Error. Debes epecificar de la pagina que procede.</h1>
<?php endif ?>
</div>
</div>
</body>
</html>