-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtilaukset.php
66 lines (49 loc) · 1.32 KB
/
tilaukset.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
<?php
require('db.php');
session_start();
$products = $_SESSION['products'];
$email = $_SESSION["email"];
$kayttajaID = $_SESSION["kayttajaID"];
?>
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"/>
<title>Profiili</title>
<link rel="stylesheet" href="style.css"/>
<script src="https://kit.fontawesome.com/f17e988409.js" crossorigin="anonymous"></script>
</head>
<body>
<?php
include('header.php');
?>
<div class="logo">
<img src="images/pizzaa.jpg" alt="">
</div>
<form class="form-prof" action="" method="post">
<h1 id="title"><?php echo "Tilaukset";?></h1>
<?php
$sql = "SELECT * FROM tilaukset WHERE asiakasID = '$kayttajaID'";
$result = $con->query($sql);
if ($result->num_rows > 0) {
// output data of each row
while($row = $result->fetch_assoc()) {
echo "<table><tr><td>"
. $row["tilauspvm"]. "</br>"
. $row["tuotteet"]. "</br></td></table><table><td>"
. $row["hinta"]. "</td></tr></table>
</table>";
}
} else {
echo "0 results";
}
?>
<h1 id="title"><?php echo "</br><a href='profiili.php'>Profiili</a>"?></h1>
</div>
</form>
<?php
$con->close();
?>
</script>
</body>
</html>