-
Notifications
You must be signed in to change notification settings - Fork 0
/
admin_selfList.php
49 lines (34 loc) · 993 Bytes
/
admin_selfList.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
<!DOCTYPE html>
<html>
<head>
<?php include 'admin_head.php'; ?>
</head>
<body>
<section>
<div>
<br>
<div>
<center>
<h2>필진 목록</h2>
</center>
</div>
<div id="adImgList">
<!-- <div>
<button class="view_btn1" onclick="location.href='./admin_create_user.php'">회원추가</button>
<input type="text" class="searchInput" onkeyup="searchInput()" placeholder="이름 검색..">
</div> -->
<div id="includeTable">
<table class="imgTable sortTable"><?php include 'admin_selfSelect.php'; ?></table>
</div>
<div id="tableBox"></div>
<br>
<br>
</div>
</div>
</section>
<footer>
<?php include 'admin_footer.php'; ?>
</footer>
<?php include "admin_jsGroup.php";?>
</body>
</html>