-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
48 lines (42 loc) · 1.09 KB
/
index.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
include "includes/header.php";
include "includes/navbar.php";
?>
<div class="row">
<!--this is main content area-->
<div class="col 19 m9 s12">
<?php
$sql="select * from posts order by id DESC";
$res=mysqli_query($link,$sql);
if(mysqli_num_rows($res)>0)
{
while($row=mysqli_fetch_assoc($res))
{
?>
<div class="col l3 m4 s6">
<div class="card small">
<div class="card-image">
<img src="img/<?php echo $row['feature_image'];?>" alt="">
<span class="card-title black-text truncate"><?php echo $row['title'] ?></span>
</div>
<div class="card-content">
<?php echo $row['content']; ?>
</div>
<div class="card-action teal center">
<a href="posts.php?id=<?php echo $row['id'];?>" class="white-text">Read More</a>
</div>
</div>
</div>
<?php
}
}
?>
</div>
<!--This is sidebar area-->
<div class="col l3 m3 s12">
<?php
include "includes/sidebar.php";
?>
<?php
include "includes/footer.php";
?>