-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsearch.php
99 lines (79 loc) · 2.38 KB
/
search.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
<html>
<!--============================================================
File: search.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="">ä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="akt">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="search.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['search'])) {
$produkt=$_POST['produkt'];
$line = $product->searchByName('ressourcen', $produkt);//($table, $produkt)
}
$result -> disconnect(); // Verbindung zur DB trennen
?>
</div>
</div>
<div class="rechts">
<!-- Eintrag löschen / ändern-->
<table>
<tr>
<td> <text>Eintrag suchen:</text></td>
</tr>
<tr>
<td> <input type="text" name="produkt" placeholder="Produkname">
</td>
<td><input type="submit" name="search" value="suchen" class="button-change"></td>
</table><br>
<?=$line?>
</div>
</body>
</html>