File "box.php"
Full path: /home/fsibplc/public_html/section/century section/box.php
File
size: 1.3 B
MIME-type: text/plain
Charset: utf-8
Download Open Edit Advanced Editor Back
<!-- Start Box Area -->
<section class="box-area m-0 pt-100 pb-70">
<div class="container">
<div class="section-title">
<span>OUR COURSES</span>
<h2>Enroll Your Desire Course</h2>
<p>As Century Education & Training Center provides both Japanese & English Language training along with IT training for both students and professionals, Century Education & Training Center provides following courses:</p>
</div>
<div class="row">
<?php
$posts = "SELECT * FROM posts WHERE category_id = '25' AND status ='0'";
$posts_run = mysqli_query($con, $posts);
if(mysqli_num_rows($posts_run) > 0)
{
foreach( $posts_run as $postItem)
{
?>
<div class="col-lg-4 col-md-6">
<div class="single-box single-box-2 bg-4">
<i class="flaticon-statistics"></i>
<h3><?=$postItem['name'];?></h3>
<p>Lorem ipsum dolor sit amet, consect adipiscing elit, sed do eiusmod tempor incididunt labore.</p>
<a class="default-btn" href="<?= base_url('post-details.php?title='.$postItem['slug']); ?>">Read More</a>
</div>
</div>
<?php
}
}else {
?>
<h4>No Such URL Found</h4>
<?php
}
//dynamic end
?>
</div>
</div>
</section>
<!-- End Box Area -->