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 pathUsernotice.php
66 lines (62 loc) · 2.05 KB
/
Usernotice.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
<!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
session_start();
include 'show_list.php';
include 'User.class.php';
$notices = new Notices();
?>
<!-- <div class="announcement">
<h1>Announcement</h1>
<?php
// $arr = $notices->getNoticesByEmailcurrent(Notices::$ANNOUNCEMENT, $_SESSION['userData']['email']);
// foreach ($arr as $a) {
// echo "<h3><a target='_blank' href='" . $a['url'] . "'>" . $a['title'] . "</a></h3>";
// echo "<a href='editNotice.php?id=" . $a['id'] . "&tname=announcements'>Edit</a>";
// }
?>
</div>
<div class="important">
<h1>Important</h1>
<?php
// $arr = $notices->getNoticesByEmailcurrent(Notices::$IMPORTANT, $_SESSION['userData']['email']);
// foreach ($arr as $a) {
// echo "<h3><a target='_blank' href='" . $a['url'] . "'>" . $a['title'] . "</a></h3>";
// }
?>
</div>
<div class="event">
<h1>Event</h1>
<?php
// $arr = $notices->getNoticesByEmailcurrent(Notices::$EVENT, $_SESSION['userData']['email']);
// foreach ($arr as $a) {
// echo "<h3><a target='_blank' href='" . $a['url'] . "'>" . $a['title'] . "</a></h3>";
// }
?>
</div> -->
<div class="tender">
<h1>Tender</h1>
<?php
$arr = $notices->getNoticesByEmailcurrent(Notices::$TENDER, $_SESSION['userData']['email']);
foreach ($arr as $a) {
echo "<h3><a target='_blank' href='" . $a['url'] . "'>" . $a['title'] . "</a></h3>";
echo "<a href='editNotice.php?id=" . $a['id'] . "&tname=" . Notices::$TENDER . "'>Edit</a>";
}
?>
</div>
</body>
</html>