-
Notifications
You must be signed in to change notification settings - Fork 1
/
history.php
executable file
·44 lines (44 loc) · 1.6 KB
/
history.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
<?php
include 'app.php';
?>
<?getHeader()?>
<body>
<div class="ui">
<div class="header-box">
<!-- <nav class="pui-nav primary">
<div class="inner">
<div class="title">
تاریخ ایران
</div>
</div>
</nav> -->
<?getMenu()?>
</div>
<div class="box-container">
<main role="main">
<div class="timeline">
<?
$getHistory = mysqli_query($db,"SELECT * FROM `History` WHERE `active`=1");
if (mysqli_num_rows($getHistory) >= 1) {
echo "<div class='line'></div>";
}
else {
echo "<p class='center-align red-txt'>هیچ چیزی برای نمایش وجود ندارد :(</p>";
}
while ($History = mysqli_fetch_assoc($getHistory)) {
echo "<div class='item'>
<div class='inner'>";
echo "<h5>$History[title]</h5>";
echo "<p>$History[description]</p>";
echo "<footer><label class='lbl primary'>$History[date]</label></footer>";
echo " </div>
</div>";
}
?>
</div>
</main>
</div>
<?getButtons()?>
</div>
<?=setTitle("خلاصه ای از تاریخ ایران", 1)?>
<?getFooter()?>