This repository has been archived by the owner on Sep 7, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnotice.php
56 lines (53 loc) · 1.51 KB
/
notice.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
<style>
div {
border: solid 2px black;
margin: 16px;
padding: 16px;
}
</style>
</head>
<body>
<?php
include 'show_list.php';
include 'User.class.php';
$notices = new Notices();
?>
<div class="announcement">
<h1>Announcement</h1>
<a href="announcement.php"><button>Upload</button></a>
<?php
$arr = $notices->getNotices(Notices::$ANNOUNCEMENT);
foreach ($arr as $a) {
echo "<h3><a target='_blank' href='" . $a['url'] . "'>" . $a['title'] . "</a></h3>";
}
?>
</div>
<div class="important">
<h1>Important</h1>
<a href="important.php"><button>Upload</button></a>
<?php
$arr = $notices->getNotices(Notices::$IMPORTANT);
foreach ($arr as $a) {
echo "<h3><a target='_blank' href='" . $a['url'] . "'>" . $a['title'] . "</a></h3>";
}
?>
</div>
<div class="event">
<h1>Event</h1>
<a href="event.php"><button>Upload</button></a>
<?php
$arr = $notices->getNotices(Notices::$EVENT);
foreach ($arr as $a) {
echo "<h3><a target='_blank' href='" . $a['url'] . "'>" . $a['title'] . "</a></h3>";
}
?>
</div>
</body>
</html>