File "service.php"
Full path: /home/fsibplc/public_html/fsib/section/century section/service.php
File
size: 1.66 B
MIME-type: text/html
Charset: utf-8
Download Open Edit Advanced Editor Back
<!-- Start Services Area -->
<section class="services-area pb-100">
<div class="container">
<div class="row">
<div class="col-lg-6">
<div class="services-title">
<span>Services</span>
<h2>Services That we provide</h2>
<p>As CTEC provides both Japanese & English Language training along with IT training for both students and professionals, CTEC provides following courses:</p>
</div>
</div>
<div class="col-lg-6">
<div class="services-title">
<p>As Century Education & Training Center provides both Japanese & English Language training along with supporting visa process for both students and professionals, Century Education & Training Center wants to build a solid business domain from where it can provide the best service across the country and contribute for betterment of the country.</p>
</div>
</div>
</div>
<div class="row">
<div class="service-wrap owl-carousel owl-theme">
<?php
$service_query = "SELECT * FROM services WHERE status = '0' Limit 4";
$service_query_run = mysqli_query($con, $service_query);
if(mysqli_num_rows($service_query_run) > 0)
{
foreach( $service_query_run as $serviceitem)
{
?>
<div class="single-services">
<img src="<?= base_url('uploads/service/'.$serviceitem['icon']) ?>" alt="">
<div class="service-text">
<h3>
<a href="#"><?= $serviceitem['name']; ?><i class="flaticon-strategy"></i></a>
</h3>
</div>
</div>
<?php
}
}
?>
</div>
</div>
</div>
</section>
<!-- End Services Area -->