-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathblog.php
170 lines (137 loc) · 8.13 KB
/
blog.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
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
<?php
session_start();
include('includes/config.php');?>
<?php
$query=mysqli_query($con,"select tblposts.id as pid,tblposts.PostTitle as posttitle,tblposts.PostImage,tblcategory.CategoryName as category,tblcategory.id as cid,tblsubcategory.Subcategory as subcategory,tblposts.PostDetails as postdetails,tblposts.PostingDate as postingdate,tblposts.PostUrl as url from tblposts left join tblcategory on tblcategory.id=tblposts.CategoryId left join tblsubcategory on tblsubcategory.SubCategoryId=tblposts.SubCategoryId where tblposts.Is_Active=1 order by tblposts.id"); $row=mysqli_fetch_array($query, MYSQLI_ASSOC);
?>
<!DOCTYPE html>
<html lang="en">
<head>
<?php
$title ='E9ja Blog Updates';
$image='img/blog.png';
?>
<?php include('includes/tag/blog-tag.php'); ?>
<!-- Title -->
<title>Explicit9ja.com | Blog</title>
<!-- Favicon -->
<link rel="icon" href="../img/core-img/favicon.ico">
<!-- Stylesheet -->
<link rel="stylesheet" href="style.css">
</head>
<body>
<?php include('includes/share/blog-share.php'); ?>
<?php include('includes/header.php'); ?>
<!-- Latest News Area Start -->
<section class="razo-latest-news-area bg-overlay bg-img jarallax" style="background-image: url(img/bg-img/32.jpg);">
<!-- Razo Latest News Slide -->
<div class="razo-latest-news-slide owl-carousel">
<!-- Blog Post -->
<?php
$pageno = 1;
$no_of_records_per_page = 8;
$offset = ($pageno-1) * $no_of_records_per_page;
$total_pages_sql = "SELECT COUNT(*) FROM tblposts";
$result = mysqli_query($con,$total_pages_sql);
$total_rows = mysqli_fetch_array($result, MYSQLI_NUM)[0];
$total_pages = ceil($total_rows / $no_of_records_per_page);
require_once('libs/functions.php');
$query=mysqli_query($con,"select tblposts.id as pid,tblposts.PostTitle as posttitle,tblposts.PostImage,tblcategory.CategoryName as category,tblcategory.id as cid,tblsubcategory.Subcategory as subcategory,tblposts.PostDetails as postdetails,tblposts.PostingDate as postingdate,tblposts.PostUrl as url from tblposts left join tblcategory on tblcategory.id=tblposts.CategoryId left join tblsubcategory on tblsubcategory.SubCategoryId=tblposts.SubCategoryId where tblposts.Is_Active=1 order by tblposts.id desc LIMIT $offset, $no_of_records_per_page");
while ($row=mysqli_fetch_array($query, MYSQLI_ASSOC)) {
?>
<!-- Single Latest News Area -->
<div class="razo-single-latest-news-area bg-overlay bg-img" style="background-image: url(admin/postimages/<?php echo htmlentities($row['PostImage']);?>);">
<!-- Post Content -->
<div class="post-content">
<a href="single-blog.php?e-blog=<?php echo htmlentities($row['url'])?>" class="post-title"><?php echo htmlentities($row['posttitle']);?></a>
<p><?php $pt=$row['postdetails']; echo (substr($pt,0,230));?><b>... ...</b></p>
</div>
<!-- Post Date -->
<div class="post-date">
<h2><?php echo htmlentities(str_replace("-","/",substr($row['postingdate'],6,4)));?></h2>
<p><?php echo htmlentities(substr($row['postingdate'],11,5));?></p>
</div>
<!-- Read More -->
<div class="read-more-btn">
<a href="single-blog.php?e-blog=<?php echo htmlentities($row['url'])?>" class="btn">Read More <i class="fa fa-angle-double-right" aria-hidden="true"></i></a>
</div>
</div>
<?php } ?>
</div>
</section>
<!-- Latest News Area End -->
<!-- News Area Start -->
<section class="razo-blog-area section-padding-80-0">
<div class="container">
<div class="row">
<!-- Section Heading -->
<div class="col-12">
<div class="weekly-news-area mb-50">
<div class="section-heading text-center">
<h2># Latest Blogs </h2>
</div>
</div>
</div>
</div>
<div class="row">
<!--span><hr></span-->
<!-- Blog Post -->
<?php
if (isset($_GET['pageno'])) {
$pageno = $_GET['pageno'];
} else {
$pageno = 1;
}
$no_of_records_per_page = 8;
$offset = ($pageno-1) * $no_of_records_per_page;
$total_pages_sql = "SELECT COUNT(*) FROM tblposts";
$result = mysqli_query($con,$total_pages_sql);
$total_rows = mysqli_fetch_array($result, MYSQLI_NUM)[0];
$total_pages = ceil($total_rows / $no_of_records_per_page);
require_once('libs/functions.php');
$query=mysqli_query($con,"select tblposts.views, tblposts.id as pid,tblposts.PostTitle as posttitle,tblposts.PostImage,tblcategory.CategoryName as category,tblcategory.id as cid,tblsubcategory.Subcategory as subcategory,tblposts.PostDetails as postdetails,tblposts.PostingDate as postingdate,tblposts.PostUrl as url from tblposts left join tblcategory on tblcategory.id=tblposts.CategoryId left join tblsubcategory on tblsubcategory.SubCategoryId=tblposts.SubCategoryId where tblposts.Is_Active=1 order by tblposts.id desc LIMIT $offset, $no_of_records_per_page");
while ($row=mysqli_fetch_array($query, MYSQLI_ASSOC)) {
$id = $row['pid'];
?>
<!-- Single Blog Item -->
<div class="col-12 col-md-12">
<!-- Single Post Area -->
<div class="razo-single-post d-flex mb-30">
<!-- Post Thumbnail -->
<div class="post-thumbnail">
<a href="single-blog?e-blog=<?php echo $row['url'];?>"><img style="height:70px; width:140px;" src="admin/postimages/<?php echo htmlentities($row['PostImage']);?>" alt="<?php echo $row['posttitle'];?>"></a>
</div>
<!-- Post Content -->
<div class="post-content">
<a href="single-blog?e-blog=<?php echo $row['url'];?>" class="post-title"><?php echo $row['posttitle'];?></a>
<div class="post-meta">
<a href="#"><i class="fa fa-eye" aria-hidden="true"></i> <?php $count="SELECT * FROM tblposts WHERE pid=$id;"; echo $row['views']; if($row['views']>1) echo " views"; else{ echo " view";} ?></a>
</div>
</div>
</div>
<!--<span><hr></span>-->
</div>
<?php } ?>
</div>
<!-- Pagination -->
<ul class="pagination justify-content-center mb-4">
<li class="page-item"><a href="?pageno=1" class="page-link">First</a></li>
<li class="<?php if($pageno <= 1){ echo 'disabled'; } ?> page-item">
<a href="<?php if($pageno <= 1){ echo '#'; } else { echo "?pageno=".($pageno - 1); } ?>" class="page-link">Prev</a>
</li>
<li class="<?php if($pageno >= $total_pages){ echo 'disabled'; } ?> page-item">
<a href="<?php if($pageno >= $total_pages){ echo '#'; } else { echo "?pageno=".($pageno + 1); } ?> " class="page-link">Next</a>
</li>
<li class="page-item"><a href="?pageno=<?php echo $total_pages; ?>" class="page-link">Last</a></li>
</ul>
<div class="row">
<div class="col-12 text-center">
<a href="#" class="btn razo-btn mt-30">Load More</a>
</div>
</div>
</div>
</section>
<!-- News Area End -->
<?php include('includes/footer.php'); ?>
</body>
</html>