-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathchange.php
112 lines (93 loc) · 2.93 KB
/
change.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
<html>
<!--============================================================
File: change.php
Projekt im Rahmen des Programmiertechnik Unterrichts der 2BKI2
Thema: Anschaffungsdatenbank
Autor: Tanja Weiser
================================================================-->
<!--============================================================
MENÜ ANFANG
================================================================-->
<head><title>Bestand | Anschaffung</title>
<link rel="stylesheet" type="text/css" href="css/db.css">
</head>
<body>
<center>
<h1>Bestand | Anschaffung</h1>
</center>
<br>
<div class="menu">
<ul id="navi">
<li>
<a href="change.php" title="change" id="akt">ändern</a>
<li>
<a href="delete.php" title="delete" id="">löschen</a>
</li>
<li>
<a href="entry.php" title="entry" id="">eintragen</a>
</li>
<li>
<a href="search.php" title="search" id="">suchen</a>
</li>
<li>
<a href="save.php" title="save" id="">speichern</a>
</li>
<li>
<a href="logout.php" title="logout" id="">logout</a>
</li>
</ul>
</div>
<br><br><br>
<!--============================================================
MENÜ ENDE
================================================================-->
<form action="change.php" method="post">
<div class="links">
<div align="right">
<?php
/*=============================================================
KLASSEN
==============================================================*/
require_once 'class/db.class.php';
require_once 'class/product.class.php';
/*=============================================================*/
$result = new db(); // neues Objekt erstellen
$result -> connect('localhost', 'anschaffung', 'root', 'root'); //Verbindungsaufbau, pw Laptop: root, pw Schule: server
$result -> query("SELECT * FROM ressourcen"); // auslesen der Tabelle 'ressourcen'
$result -> showTable('ressourcen'); // Anzeigen der Tabelle 'ressourcen' in einer Tabelle
$product = new product($result);
if(isset($_POST['change'])) {
$id = $_POST['ID'];
$produkt = $_POST['produkt'];
$bestand = $_POST['bestand'];
$bestellen = $_POST['bestellen'];
$product -> changeEntry('ressourcen', $id, $produkt, $bestand, $bestellen); //($table, $id, $produkt, $bestand, $bestellen)
}
$result -> disconnect(); // Verbindung zur DB trennen
?>
</div>
</div>
<div class="rechts">
<table>
<td> <text>Eintrag ändern:</text></td>
</tr>
<tr>
<td> <input type="text" name="ID" placeholder="ID"></td>
</tr>
<tr>
<td> <input type="text" name="produkt" placeholder="Produktname"></td>
</tr>
<tr>
<td> <input type="text" name="bestand" placeholder="Bestand"></td>
</tr>
<tr>
<td> <input type="text" name="bestellen" placeholder="Bestellen"></td>
</tr>
<tr>
<td>
<input type="submit" name="change" value="ändern" class="button-change"></td>
</tr>
</table><br>
</div>
</body>
</html>