-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinfo.php
59 lines (40 loc) · 1.22 KB
/
info.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
<!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="content">
<?php
include('./connect.php');
$sql = 'SELECT * FROM `info`';
$run = mysqli_query($con,$sql);
while($row = mysqli_fetch_assoc($run)){
echo '
<div style="width:70vw;">
<div class="info">
<a href="'.$row['link'].'" target="_blank">
<img class="info" src="https://drive.google.com/uc?id='.$row['img'].'" style="width:65vw;">
</a>
</div>
</div>
';
}
?>
</div>
<div w3-include-html="./layout/footer.html"></div>
</body>
</html>
<script src="./js/w3.js"></script>
<script>
w3.includeHTML();
</script>