Private
Server IP : 68.178.168.24  /  Your IP : 3.137.213.117
Web Server : Apache
System : Linux 24.168.178.68.host.secureserver.net 3.10.0-1160.119.1.el7.tuxcare.els19.x86_64 #1 SMP Mon Mar 31 17:29:00 UTC 2025 x86_64
User : realcarecert ( 1247)
PHP Version : 7.4.33
Disable Function : NONE
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : ON  |  Sudo : ON  |  Pkexec : ON
Directory :  /home/realcarecert/www/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ HOME SHELL ]     

Current File : /home/realcarecert/www/training-sechdule.php
<?php 
include ('include/header.php');
?>

        <!--=========== breadcrumb Section Start =========-->
        <div class="sc-breadcrumb-style sc-pt-80 sc-pb-80">
            <div class="container position-relative">
                <div class="row">
                    <div class="col-lg-12">
                        <div class="sc-slider-content p-z-idex">
                            <div class="sc-slider-subtitle">Home - TRAINING SECHDULE
                                </div>
                            <h1 class="slider-title white-color sc-mb-25 sc-sm-mb-15">Training Sechdule</h1>
                        </div>
                    </div>
                </div>
            </div>
        </div>
        <!--=========== breadcrumb Section End =========-->

        <!--=========== about Section Start =========-->
        <div id="sc-popular-courses" class="sc-project-filter-section sc-pt-80 sc-md-pt-80 pb-150">
            <div class="container">
                <div class="row">






                <?php 

$showdata="SELECT * FROM `tbl_banner` WHERE `banner_type`='7' LIMIT 1";
$showresult = mysqli_query($link,$showdata);
while($result = mysqli_fetch_array($showresult))

{

?>

                    <div class="col-lg-8 offset-lg-2 col-md-8 offset-md-2">
                        <div class="sc-heading-area sc-mb-55 sc-md-mb-35 text-center">
                            <span class="sub-title"><i class="icon-line"></i> Dear professionals !!!</span>
                            <h2 class="title">
                            <?= $result['banner_name'];?>   <span class="primary-color italic"><?= $result['banner_link'];?></span> 
                            </h2>
                            <p><?= $result['banner_decs'];?></p>
                        </div>
                    </div>


<?php } ?>




                </div>
                
                <div class="row grid gx-4">
                  <div class="table-responsive">
                      <table class="table table-bordered table-striped">
                      <tbody>







                          <tr>
                          <th>S.No. </th>
                          <th>Upcoming Online Training From TUVSUD Middle East LLC</th>
                          <th>Schedule </th>
                        </tr>



                        <?php 
$sn=0;
$showdata="SELECT * FROM `tbl_banner` WHERE `banner_type`='8' ";
$showresult = mysqli_query($link,$showdata);
while($result = mysqli_fetch_array($showresult))

{
$sn++;
?>


                        <tr>
                            <td><?= $sn?>.</td>
                            <td><?= $result['banner_decs'];?></td>
                            <td><?= $result['banner_link'];?></td>
                        </tr>
<?php } ?>
                     
                      </tbody>
                      </table>
                  </div>
                <div class="col-lg-12 text-center mt-4 conteeents">
                    <h3><i>Seats are reserved on a <b style="color:#f00;">'First Come, First Serve'</b> basis. Only 8 Seats are allowed per batch</i></h3>
                </div>
              
                    
                </div>
            </div>
        </div>


        
        <!--=========== about Section End =========-->

        <!--=========== Working Process section Start =========-->
       
  
    
        <!--=========== blog section End =========-->

        <?php 
       include ('include/footer.php');
       ?>
Private