-
Notifications
You must be signed in to change notification settings - Fork 0
/
process.php
80 lines (63 loc) · 2.73 KB
/
process.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
<?php
require_once("resources/config.php");
require_once(COMPONENTS_PATH . "/header.php");
require_once(COMPONENTS_PATH . "/navbar.php");
$conn = new mysqli($config['db']['host'], $config['db']['username'], $config['db']['password'], $config['db']['dbname']);
// Check connection
if($conn === false){
die("Errore di connessione: " . $mysqli->connect_error);
}
$titolo = addslashes($_POST['titolo']);
$sottotitolo = addslashes($_POST['sottotitolo']);
$autori = addslashes($_POST['autori']);
$descrizione = addslashes($_POST['desc']);
$prezzo = addslashes($_POST['prezzo']);
$copertina = addslashes($_POST['copertina']);
$editore = addslashes($_POST['editore']);
$collana = addslashes($_POST['collana']);
$datapubb = addslashes($_POST['datapubb']);
$ean = addslashes($_POST['ean']);
$isbn = addslashes($_POST['isbn']);
$pagine = addslashes($_POST['pagine']);
$formato = addslashes($_POST['formato']);
$traduttore = addslashes($_POST['traduttore']);
$cura = addslashes($_POST['cura']);
$edizione = addslashes($_POST['edizione']);
$illustratore = addslashes($_POST['illustratore']);
$sql = "INSERT INTO newbooks (titolo, sottotitolo, autori, descrizione, prezzo, copertina, editore, collana, datapubb, ean, isbn, pagine, formato, traduttore, cura, edizione, illustratore)
VALUES ('$titolo', '$sottotitolo', '$autori', '$descrizione', '$prezzo', '$copertina', '$editore', '$collana', '$datapubb', '$ean', '$isbn', '$pagine', '$formato', '$traduttore', '$cura', '$edizione', '$illustratore')";
if ($conn->query($sql) === true) { ?>
<div class="jumbotron container mt-5">
<h4>Libro aggiunto con successo!</h4>
<h6>Riepilogo</h6>
<?php
echo $titolo . '<br>';
echo $sottotitolo . '<br>';
echo $autori . '<br>';
echo $descrizione . '<br>';
echo $prezzo . '<br>';
echo $copertina . '<br>';
echo $editore . '<br>';
echo $collana . '<br>';
echo $datapubb . '<br>';
echo $ean . '<br>';
echo $isbn . '<br>';
echo $pagine . '<br>';
echo $formato . '<br>';
echo $traduttore . '<br>';
echo $cura . '<br>';
echo $edizione . '<br>';
echo $illustratore . '<br>';
?>
<button class="btn btn-success"><a href="newadd.php">Aggiungi Libro</a></button>
</div>
<?php } else { ?>
<div class="jumbotron container mt-5">
<h4>Errore</h4>
<p><b>SQL</b> <?= $sql ?></p>
<p><b>ERR</b> <?= $conn->error ?></p>
<button class="btn btn-success"><a href="newadd.php">Aggiungi Libro</a></button>
</div>
<?php }
$conn->close();
?>