-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpast.php
61 lines (43 loc) · 1.31 KB
/
past.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
<!doctype HTML5>
<html>
<head><link rel="icon" href="./img/logo-icon.png" />
<script src="./js/jquery-3.4.1.min.js"></script><script src="./js/navbar.js"></script><link rel="stylesheet" href="./main.css">
<script type="text/javascript" src="slidemenu.js"></script>
<title>明道中學校友會</title>
<style></style>
</head>
<body><div w3-include-html="./layout/navbar.php"></div>
<div align="center" class="banner">
<a id="top"></a>
<div><h3 class="title">歷 屆 理 事 長</h3></div>
<div><p class="subtitle">關於校友會 > 校友會成員</p></div>
</div>
<div class="store_detail">
<?php
include('connect.php');
$sql = 'SELECT * FROM `past_board`';
$run = mysqli_query($con,$sql);
while($row = mysqli_fetch_assoc($run)){
echo '
<div class="alumni_content">
<div class="store_photo">
<img src="https://drive.google.com/uc?id='.$row['img'].'" class="store">
</div>
<div class="alumni_intro">
<h2>'.$row['name'].'</h2>
<p>'.$row['year'].'</p>
<p style="word-break:break-all;">'.$row['resume'].'</p>
</div>
</div>
';
//echo '<hr>';
}
?>
</div>
<div w3-include-html="./layout/footer.html"></div>
</body>
</html>
<script src="./js/w3.js"></script>
<script>
w3.includeHTML();
</script>