-
Notifications
You must be signed in to change notification settings - Fork 0
/
class_ori.php
138 lines (134 loc) · 4.65 KB
/
class_ori.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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
<?php
require_once ("Databases/Database.php");
require_once ("Databases/Users.php");
require_once ("Databases/Courses.php");
session_start();
if (!isset($_SESSION["LoggedIn"]) && !isset($_SESSION["UserId"])) {
header("Location: login.php");
exit();
}
if(!isset($_GET['id']))
die("Error: ID Kelas tidak ditemukan");
else {
$id_ruang = $_GET['id'];
$db_c = new Courses();
$res_c = $db_c->CourseBaseOnID($id_ruang);
}
$db_u = new Users();
$res_u = $db_u->latest_news();
?>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Eclass-4u@UNTAR</title>
<meta name="keywords" content="" />
<meta name="description" content="" />
<link href="loginstyle.css" rel="stylesheet" type="text/css" />
<link rel="icon" type="image/png" href="icon1.png">
<style type="text/css">
.style1 {
font-size: 12px;
font-weight: bold;
}
-->
</style>
</head>
<body>
<div id="templatemo_container">
<div id="templatemo_left_column"></div>
<div id="templatemo_menu_column">
<div id="templatemo_left_title">
ECLASS-4U<br />
<span>Universitas Tarumanagara</span></div>
<div class="templatemo_menu_list"><ul>
<li><a href="index.php">Home</a></li>
<li><a href="mycourse.php" class="current">My Course</a></li>
<li><a href="kontakadmin.php">Kontak Admin</a></li>
</ul></div>
<div id="templatemo_new">
<p class="style1">LATEST NEWS & EVENTS</p>
<?php foreach ($res_u as $news) : ?>
<p><span><b>Post Date: </b><br><?php echo $news["waktu"]; ?></span></p>
<p><?php echo $news["isi"]; ?></p>
<?php endforeach ?>
</div>
<div id="templatemo_contact"><span>QUICK CONTACT<br />
</span>
Pak Suryanto<br />
Tel: 666-100-2000<br />
Fax: 666-666-6666<br />
Email: suryantohot@hotmail.com</div>
</div>
<div id="templatemo_right_column">
<div id="templatemo_right_header">
<div class="templatemo_right_link">
<form action="logout.php">
<ul>
<li><a><b><?php echo $_SESSION["Name"]; ?></b></a></li>
<button type="submit"><b>LOG OUT</b></button>
</ul>
</form>
</div>
<div class="templatemo_right_slogan"><strong>.....Media Belajar Daring FTI UNTAR.....<br />
</strong>
Berlajar Bersama FTI UNTAR melalui Eclass-4u</div>
</div>
<div id="templatemo_content">
<h1>(<?php echo $res_c['kode_mk']; ?>) <?php echo $res_c['course'];?></h1>
<p><img src="images/templatemo_line.jpg" alt="templatemo.com" width="100%" height="2" /></p>
<h2>Forum</h2>
<a href="news_forum.php?id=<?php echo $id_ruang ?>" text>
<p><img src="news_icon.png" width="20" height="20">    News Forum</p>
</a>
<br><br>
<!--
<div class="templatemo_wedo">
<h2>Tugas MataKuliah</h2>
<p><strong>#phptugas</strong></p>
</div>
<p><img src="images/templatemo_line.jpg" alt="templatemo.com" /></p>-->
<div class="templatemo_content">
<h2>Bahan Ajar</h2>
<p><strong>Pertemuan ke-1 </strong></p>
<p>#phpbahanajarkei</p>
<p></p>
<p><strong>Pertemuan ke-2 </strong></p>
<p>#phpbahanajarkei</p>
<p><strong>Pertemuan ke-3 </strong></p>
<p>#phpbahanajarkei</p>
<p><strong>Pertemuan ke-4 </strong></p>
<p>#phpbahanajarkei</p>
<p><strong>Pertemuan ke-5 </strong></p>
<p>#phpbahanajarkei</p>
<p><strong>Pertemuan ke-6 </strong></p>
<p>#phpbahanajarkei</p>
<p><strong>Pertemuan ke-7 </strong></p>
<p>#phpbahanajarkei</p>
<p><strong>Pertemuan ke-8 </strong></p>
<p>#phpbahanajarkei</p>
<p><strong>Pertemuan ke-9 </strong></p>
<p>#phpbahanajarkei</p>
<p><strong>Pertemuan ke-10 </strong></p>
<p>#phpbahanajarkei</p>
<p><strong>Pertemuan ke-11 </strong></p>
<p>#phpbahanajarkei</p>
<p><strong>Pertemuan ke-12 </strong></p>
<p>#phpbahanajarkei</p>
<p><strong>Pertemuan ke-13 </strong></p>
<p>#phpbahanajarkei</p>
<p><strong>Pertemuan ke-14 </strong></p>
<p>#phpbahanajarkei</p>
<p></p>
<p> </p>
</div>
</div>
</div>
<div id="templatemo_footer">Copyright © 2018 By Ninuninuninu~<!-- Credit: www.templatemo.com --></div>
</div>
<!-- templatemo 027 classic -->
<!--
Classic Template
http://www.templatemo.com/preview/templatemo_027_classic
-->
</body>
</html>