-
Notifications
You must be signed in to change notification settings - Fork 0
/
insert_spares.php
40 lines (38 loc) · 1.27 KB
/
insert_spares.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
<?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");
$descripcion=$_POST['descripcion'];
$importe=$_POST['importe'];
$ganancia=$_POST['ganancia'];
$sentenciaSQL=("insert into repuestos(Descripcion, Importe, Ganancia) values ('$descripcion', '$importe', '$ganancia')");
$result=$conn->query($sentenciaSQL);
if(!$result) {
echo "<br>Error al introducir el repuesto en la Base de Datos";
}
else{
echo "<br>El repuesto se ha introducido con exito en la base de Datos";
}
?>
</body>
</html>