-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathmain.php
101 lines (96 loc) · 4.05 KB
/
main.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
<?php
session_start();
//세션이 존재하지 않을 때 == 로그인이 아직 안 되어 있을 때
if(!isset($_SESSION['userid']))
{
header ('Location: ./login.html');
exit();
}
//세션이 존재할 때 == 로그인이 되어 있을 때
?>
<!DOCTYPE html>
<html>
<head>
<script language="javascript" type="text/javascript" src="include/head.js"></script>
<meta charset="utf-8">
<title>민사페이</title>
</head>
<body>
<script language="javascript" type="text/javascript" src="include/header.js"></script>
<?php
$id = $_SESSION['userid'];
require('db.php');
$check="SELECT * FROM user_info WHERE userid='$id'";
$result=$mysqli->query($check);
$row=$result->fetch_array(MYSQLI_ASSOC);
$boothname = $row['boothname'];
echo "<table><tr><th><h3 class = 'dataShower'>현재 부스</h3></th></tr>";
echo "<tr><th><h2 class = 'dataShowerH2'>",$boothname,"</h2></th></tr></table>";
$isAdmin = $row['admin'];
if($isAdmin==1)
{
?>
<button type="button" class = "button1" onclick="location.href='add_account.php' ">계좌 개설</button>
<button type="button" class = "button1" onclick="location.href='charge.php' ">계좌 충전 관리</button>
<button type="button" class = "button1" onclick="location.href='refund.php' ">잔액 환불</button>
<?php
}
else if ($isAdmin==2 || $isAdmin==3)
{
?>
<form action = "payment_check.php" method="POST" onsubmit="return validate(this);">
<input type="number" placeholder = "결제할 금액을 입력해주세요. (₩)" name="price" min ="0" required>
<input type="number" placeholder = "RFID를 태그해주세요." name="rfid" required>
<div class="button">
<button type="submit" class="button1" >결제하기</button>
</div>
</form>
<h3 class = 'dataShower'>결제 기록</h3>
<table class = "BalanceRecordTable">
<thead>
<tr>
<th>번호</th>
<th>시간</th>
<th>구매</th>
<th>금액</th>
</tr>
</thead>
<?php
$result = mysqli_query($mysqli,"SELECT * FROM transaction_list WHERE booth='$boothname';");
$number=0;
$total=0;
echo("<tbody>");
while($newrow = mysqli_fetch_array( $result ) )
{
$number++;
$time = $newrow['timestamp'];
$who = $newrow['who'];
$price = $newrow['price'];
$total += $price;
echo "<tr>";
echo "<td>".$number."</td>";
echo "<td>".$time."</td>";
echo "<td>".$who."</td>";
echo "<td>".number_format($price)."원</td>";
echo "</tr>";
}
echo("</tbody>");
?>
</table>
<br>
총액은
<?= $total?>
원
</details>
<?php
}
else
{
echo "<h3>권한이 없습니다. 관리자에게 문의하세요.</h3>";
}
?>
<br>
<button type="button" class = "button2" onclick="location.href='logout.php' ">로그아웃</button>
<script language="javascript" type="text/javascript" src="include/footer.js"></script>
</body>
</html>