-
Notifications
You must be signed in to change notification settings - Fork 0
/
insert_clients.php
61 lines (56 loc) · 2.05 KB
/
insert_clients.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
<?php
session_start();
if($_SESSION["autentificado"]!= "SI"){
header("Location: index.php?errorusuario=si");
exit();
}
?>
<!DOCTYPE html>
<html lang="en">
<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">
<title>Document</title>
</head>
<body>
<h1>Menu inicial</h1>
<a href="lista_clientes.php">Lista de clientes</a>
<a href="lista_embarcaciones.php">Lista de embarcaciones</a>
<a href="lista_repuestos.php">Lista de repuestos</a>
<a href="lista_facturas.php">Lista de facturas</a>
<a href="cerrar_sesion.php">Cerrar Session</a> <br><br>
<?php
include("conexion.php");
$dni=$_POST["dni"];
$nombre=$_POST["nombre"];
$apellido1=$_POST["apellido1"];
$apellido2=$_POST["apellido2"];
$direccion=$_POST["direccion"];
$cp=$_POST["cp"];
$poblacion=$_POST["poblacion"];
$provincia=$_POST["provincia"];
$telefono=$_POST["telefono"];
$email=$_POST["email"];
if (is_uploaded_file($_FILES['foto']['tmp_name']))
{
$foto=$_FILES['foto']['tmp_name'];
$fotografia=imagecreatefromjpeg($foto);
ob_start();
imagejpeg($fotografia);
$jpg=ob_get_contents();
ob_end_clean();
$intermedio = addslashes(trim($jpg));
$jpg = str_replace('##','\##', $intermedio);
}
$sentenciaSQL=("insert into clientes(DNI, Nombre, Apellido1, Apellido2, Direccion, Cp, Poblacion, Provincia, Telefono, Email, Fotografia) values ('$dni','$nombre','$apellido1','$apellido2','$direccion','$cp','$poblacion','$provincia','$telefono','$email','$jpg')");
$result=$conn->query($sentenciaSQL);
if(!$result) {
echo "<br>Error al introducir el Cliente en la Base de Datos";
}
else{
echo "<br>El Cliente se ha introducido con exito en la base de Datos";
}
?>
</body>
</html>