-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathindex.php
22 lines (20 loc) · 919 Bytes
/
index.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<?php
include_once 'header.php';
include_once 'slider.php';
include_once 'special-post.php';?>
<hr>
<div class="container">
<?php $query = "SELECT * FROM post ORDER BY id DESC";
$statment = $pdo->query($query);
while($row =$statment->fetch(PDO::FETCH_ASSOC)): ?>
<div class="card mb-3" style="width:100%">
<img src="<?php echo $row['src']; ?>" class="card-img-top" style="height: 20rem">
<div class="card-body">
<h5 class="card-title"><?php echo $row['title'];?></h5>
<p class="card-text"><?php echo post_contant($row['content'],300); ?></p>
<p class="card-text"><small class="text-muted"><a class="btn btn-primary" href="read-more.php?postid=<?php echo $row['id']; ?>">read more...</a></small></p>
</div>
</div><hr>
<?php endwhile;?>
</div>
<?php include_once 'footer.php'; ?>