-
Notifications
You must be signed in to change notification settings - Fork 1
/
index-content-news.php
48 lines (42 loc) · 1.45 KB
/
index-content-news.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
<?php
if (isset($_REQUEST['content'])) {
$news_ID =$_REQUEST['content'];
$auth_user->news_index($news_ID);
}
else{
?>
<div class="container">
<div class="gradient-green" style="width: auto; padding: 20px;margin-top: 25px;">
<h2>News Overview</h2>
<hr>
<p>
Learn more about Imus National High School Greengate Annex by keeping tabs on events, achievements, and special announcements of the School.
</p>
</div>
<br>
<div class="row" >
<div class="col-sm-12" style="padding-bottom:10px;">
<div class="card" >
<div class="card-body" >
<table class="table table-striped table-sm" id="news_data">
<thead>
<tr>
<!-- <th width="5%" >#</th> -->
<th>Title</th>
<th width="20%" >Date</th>
<!-- <th width="20%" >Semester</th> -->
<th width="10%" >Action</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
</div>
</div>
</div>
</div>
<br>
</div>
<?php
}
?>