Create New Item
×
Item Type
File
Folder
Item Name
×
Search file in folder and subfolders...
File Manager
/
fsib
/
section
/
century section
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<!-- 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 -->