-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgotowykomputer.php
68 lines (68 loc) · 2.82 KB
/
gotowykomputer.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
<?php
include 'classes/dbconn.class.php';
$connection = dbconn::instance();
?>
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"/>
<title>Logowanie na sesjach</title>
<link rel="stylesheet" href="css/style.css"/>
</head>
<body>
<h1>Wybierz kwotę jaką chcesz wydać na komputer:</h1>
<div class="gotowykomputer">
<form action="<?php echo $_SERVER['PHP_SELF']; ?>" method="POST">
<select name="cena">
<?php
$wynik = $connection->query("select idgotowykomputer, cena from gotowykomputer");
while ($row = mysql_fetch_array($wynik)) {
echo '<option value="' . $row['cena'] . '">' . $row['cena'] . '</option>';
}
?>
<input type="submit" value="Wyszukaj" class="button"/>
</select>
</form>
</div>
<?php
if (isset($_POST['cena'])) {
settype($_POST['cena'], 'int');
$query = 'Select idgotowykomputer, procesor, plytaglowna, kartagraficzna, ram, dysk, nagrywarka, obudowa, zasilacz from gotowykomputer where cena =\'' . $connection->escape($_POST['cena']) . '\'';
echo $query;
$wynik = $connection->query($query);
?>
<table id="tabela">
<thead>
<tr>
<th>ID</th>
<th>Procesor</th>
<th>Płyta Główna</th>
<th>Karta Graficzna</th>
<th>Pamięć RAM</th>
<th>Dysk</th>
<th>Nagrywarka</th>
<th>Obudowa</th>
<th>Zasilacz</th>
</tr>
</thead>
<tbody>
<?php
while ($row = mysql_fetch_array($wynik)) {
echo'<tr>';
echo'<td>' . $row['idgotowykomputer'] . '</td>';
echo'<td>' . $row['procesor'] . '</td>';
echo'<td>' . $row['plytaglowna'] . '</td>';
echo'<td>' . $row['kartagraficzna'] . '</td>';
echo'<td>' . $row['ram'] . '</td>';
echo'<td>' . $row['dysk'] . '</td>';
echo'<td>' . $row['nagrywarka'] . '</td>';
echo'<td>' . $row['obudowa'] . '</td>';
echo'<td>' . $row['zasilacz'] . '</td>';
echo'</tr>';
}
?>
</tbody>
</table>
<?php } ?>
</body>
</html>