Current Directory: /home/grrinternational/public_html
Viewing File: /home/grrinternational/public_html/index.php
<?php
include('admin/api/main.php');
$editsite=$userObj->getsitesingle($mysqli);
?>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en-US" lang="en-US">
<head>
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-137237680-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-137237680-1');
</script>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title><?php echo $editsite['title'];?></title>
<link rel="shortcut icon" href="<?php echo $URLPATH;?>siteimage/<?php echo $editsite['favicon'];?>" type="image/x-icon">
<meta
name="description"
content="GRR International offers Top-notch Aviation training in Nagercoil. We are the best Aviation academy in Nagercoil, catering world class Placement."
/>
<!-- Style CSS -->
<link rel="stylesheet" type="text/css" href="<?php echo $URLPATH;?>style.css" />
<link rel="stylesheet" type="text/css" href="<?php echo $URLPATH;?>css/responsive.css" />
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<!--<script type="text/javascript">window.$crisp=[];window.CRISP_WEBSITE_ID="c76bed18-37be-4282-bc36-ca61551f9238";(function(){d=document;s=d.createElement("script");s.src="https://client.crisp.chat/l.js";s.async=1;d.getElementsByTagName("head")[0].appendChild(s);})();</script>-->
</head>
<body class="home home3">
<?php
if(isset($_GET['status']) && $_GET['status']=="1"){
echo
"<script type=\"text/javascript\">".
"window.alert('Thanks for your enquiry.We will get back to you as soon as possible.');"."</script>";
}
?>
<div id="wrapper">
<header id="header" class="site-header">
<?php include("include/top-header.php");?>
<!-- .top-header -->
<div class="menu-header">
<div class="container">
<div class="menu-mobile">
<button class="c-hamburger c-hamburger--htx">
<span></span>
</button>
</div>
<!-- .menu-mobile -->
<div class="menu-bg"></div>
<?php include("include/menu.php");?>
<!-- .main-menu -->
</div>
</div>
</header>
<!-- .site-header -->
<main id="main" class="site-main">
<div class="features">
<div class="container">
<div class="our-features">
<div class="features-left">
<div class="f-search">
<div class="f-search-title">
<h2>Latest News</h2>
</div>
<marquee
onMouseOver="this.stop()"
onMouseOut="this.start()"
direction="up"
>
<?php
$Newsdetails = $userObj->getfrontNewsdetails($mysqli);
if (sizeof($Newsdetails)>0)
{
for($News=0;$News<sizeof($Newsdetails);$News++)
{
?>
<div class="news1">
<?php
if($Newsdetails[$News]['page']!="")
{
$id=$Newsdetails[$News]['page'];
$url=" AND id='$id' ";
$coursesingle=$userObj->getcourseurlsingle($mysqli,$url);
$url=$coursesingle['url'];
?><a href="<?php echo $URLPATH;?>course/<?php echo $url;?>"><?php
}
else
{
?> <a href="javascript:void(0);"><?php
}
?>
<p>
<?php echo $Newsdetails[$News]['title'];?>
<?php if($Newsdetails[$News]['newstype']=="New")
{
?>
<img style="height:20px; display:inline-block;" src="<?php echo $URLPATH;?>images/assets/gif.gif"/>
<?php
}
?>
</p>
</a>
</div>
<?php }} ?>
</marquee>
</div>
</div>
<div class="features-right">
<div class="banner">
<div class="logo-banner">
<img src="<?php echo $URLPATH;?>images/assets/logo-banner.jpg" width="230px" alt="" />
</div>
<h2>Welcome to GRR International</h2>
<!-- <h5>Institute of Vocational Education</h5> -->
<div class="banner-desc">
<!-- <p>South India's No 1 Vocational Education Institution</p> -->
<h1 style="font-size:12px; margin-top:10px;">
Aviation Academy in Nagercoil
</h1>
</div>
</div>
</div>
</div>
<!-- .our-features -->
<div class="features-main">
<div class="title wow fadeInUp" data-wow-delay=".1s">
<div class="title-logo">A</div>
<div class="title-info">
<h2>Our Features</h2>
</div>
</div>
<div class="features-list wow fadeInUp" data-wow-delay=".1s">
<div class="row">
<?php
$Featuredetails = $userObj->getfrontFeaturedetails($mysqli);
if (sizeof($Featuredetails)>0)
{
for($Feature=0;$Feature<sizeof($Featuredetails);$Feature++)
{
?>
<div class="col-lg-4 col-sm-6">
<div class="ft-box">
<img src="<?php echo $URLPATH;?>featureimage/<?php echo $Featuredetails[$Feature]['image'];?>" alt="" />
<h3 class="ft-title"><?php echo $Featuredetails[$Feature]['title'];?></h3>
<div class="ft-desc">
<?php echo $Featuredetails[$Feature]['description'];?>
</div>
</div>
</div>
<?php }} ?>
</div>
</div>
</div>
</div>
</div>
<!-- .features -->
<div class="list-category wow fadeInUp" data-wow-delay=".1s">
<?php
$Categorydetails = $userObj->getfrontCategorydetails($mysqli);
if (sizeof($Categorydetails)>0)
{
for($Category=0;$Category<sizeof($Categorydetails);$Category++)
{
?>
<div class="category-item">
<a href="<?php echo $URLPATH;?>category/<?php echo $Categorydetails[$Category]['url'];?>"><img src="<?php echo $URLPATH;?>categoryimage/<?php echo $Categorydetails[$Category]['image'];?>" alt=""/></a>
<div class="category-info">
<div class="category-name"><a href="#">Technology</a></div>
<div class="category-content">
<h3 class="category-title"><?php echo $Categorydetails[$Category]['title'];?></h3>
<div class="category-desc">
<p>
<?php echo $Categorydetails[$Category]['description'];?>
</p>
</div>
<a href="<?php echo $URLPATH;?>category/<?php echo $Categorydetails[$Category]['url'];?>" class="category-more">Read more</a>
</div>
</div>
</div>
<?php if($Category==1)
{
?>
<div class="category-item center">
<div class="category-info">
<img src="<?php echo $URLPATH;?>images/assets/explore-cat.png" alt="" />
<p>Explore all the <span>Category</span></p>
<a href="javascript:void(0);" class="cat-all btn-border">All Categories</a>
</div>
</div>
<?php
}
?>
<?php }} ?>
</div>
<!-- .list-category -->
<div class="popular-course layout1">
<div class="container">
<h2 class="popular-title wow fadeInUp" data-wow-delay=".1s">
Popular Course
</h2>
<div class="popular-main">
<?php
$popularCoursedetails = $userObj->getfrontpopularCoursedetails($mysqli);
if (sizeof($popularCoursedetails)>0)
{
for($Course=0;$Course<sizeof($popularCoursedetails);$Course++)
{
if($Course%2==0)
{
?>
<div class="popular-item wow fadeInUp" data-wow-delay=".1s">
<div class="popular-thumb">
<a href="<?php echo $URLPATH;?>course/<?php echo $popularCoursedetails[$Course]['url'];?>"
><img src="<?php echo $URLPATH;?>courseimage/<?php echo $popularCoursedetails[$Course]['image'];?>" alt=""
/></a>
<a href="<?php echo $URLPATH;?>course/<?php echo $popularCoursedetails[$Course]['url'];?>" class="read-more"
>Read More</a
>
</div>
<div class="popular-box">
<div class="popular-info" style="text-align: justify !important;">
<h3>
<a href="<?php echo $URLPATH;?>course/<?php echo $popularCoursedetails[$Course]['url'];?>"
><?php echo $popularCoursedetails[$Course]['title'];?></a
>
</h3>
<div class="popular-desc">
<p style="text-align:justify;">
<?php
//echo $popularCoursedetails[$Course]['description'];
echo substr($popularCoursedetails[$Course]['description'],0,590);?>...
</p>
</div>
</div>
</div>
</div>
<?php
}
else
{
?>
<div class="popular-item wow fadeInUp" data-wow-delay=".1s">
<div class="popular-box">
<div class="popular-info" style="text-align: justify !important;">
<h3>
<a href="<?php echo $URLPATH;?>course/<?php echo $popularCoursedetails[$Course]['url'];?>"
><?php echo $popularCoursedetails[$Course]['title'];?></a
>
</h3>
<div class="popular-desc">
<p style="text-align:justify;">
<?php
echo substr($popularCoursedetails[$Course]['description'],0,590);?>...
</p>
</div>
</div>
</div>
<div class="popular-thumb">
<a href="<?php echo $URLPATH;?>course/<?php echo $popularCoursedetails[$Course]['url'];?>"
><img src="<?php echo $URLPATH;?>courseimage/<?php echo $popularCoursedetails[$Course]['image'];?>" alt=""
/></a>
<a href="<?php echo $URLPATH;?>course/<?php echo $popularCoursedetails[$Course]['url'];?>" class="read-more"
>Read More</a
>
</div>
</div>
<?php
}
?>
<?php }} ?>
</div>
<a href="<?php echo $URLPATH;?>course-list.php" class="btn all-courses">All Courses</a>
</div>
</div>
<!-- .popular-course -->
<div class="people-say">
<div class="ps-title wow fadeInUp" data-wow-delay=".1s">
<div class="container">
<h2>What people say</h2>
<div class="ps-ava">
<div class="ps-title-bg">
<img src="<?php echo $URLPATH;?>images/people-say-bg.png" alt="" />
</div>
<div class="ps-title-box">
<ul>
<?php
$Testimonialdetails = $userObj->getfrontTestimonialdetails($mysqli);
if (sizeof($Testimonialdetails)>0)
{
for($Testimonial=0;$Testimonial<sizeof($Testimonialdetails);$Testimonial++)
{
?>
<li class="<?php if($Testimonial==0){echo 'active';}?>">
<a href="javascript:void(0);"><img src="<?php echo $URLPATH;?>testimonialimage/<?php echo $Testimonialdetails[$Testimonial]['image'];?>" alt=""/></a>
<h3><?php echo $Testimonialdetails[$Testimonial]['title'];?></h3>
</li>
<?php }}?>
</ul>
</div>
</div>
</div>
</div>
<!-- .ps-title -->
<div class="people-main wow fadeInUp" data-wow-delay=".1s">
<div class="container">
<div class="people-slider arrow owl-carousel">
<?php
$Testimonialdetails = $userObj->getfrontTestimonialdetails($mysqli);
if (sizeof($Testimonialdetails)>0)
{
for($Testimonial=0;$Testimonial<sizeof($Testimonialdetails);$Testimonial++)
{
?>
<div class="people-item" data-hash="<?php echo $Testimonial;?>zero">
<span class="quote quote-open">“</span>
<div class="people-desc">
<p>
<?php echo $Testimonialdetails[$Testimonial]['description'];?>
</p>
</div>
<span class="quote quote-close">“</span>
</div>
<?php }}?>
</div>
<div class="people-controls">
<ul>
<?php
$Testimonialdetails = $userObj->getfrontTestimonialdetails($mysqli);
if (sizeof($Testimonialdetails)>0)
{
for($Testimonial=0;$Testimonial<sizeof($Testimonialdetails);$Testimonial++)
{
?>
<li>
<a href="#<?php echo $Testimonial;?>zero"><img src="<?php echo $URLPATH;?>testimonialimage/<?php echo $Testimonialdetails[$Testimonial]['image'];?>" alt=""/></a>
</li>
<?php }}?>
</ul>
</div>
</div>
</div>
</div>
<!-- .people-say -->
<div class="blog">
<div class="container">
<div class="title title-blog wow fadeInUp" data-wow-delay=".1s">
<div class="title-logo">C</div>
<div class="title-info">
<h2>OUR CERTIFICATION</h2>
<p class="desc">
South India's No 1 Vocational Education Institution
</p>
</div>
</div>
<div class="blog-content wow fadeInUp" data-wow-delay=".1s">
<div class="blog-slider owl-carousel">
<?php
$Certificatedetails = $userObj->getfrontCertificatedetails($mysqli);
if (sizeof($Certificatedetails)>0)
{
for($Certificate=0;$Certificate<sizeof($Certificatedetails);$Certificate++)
{
?>
<div class="blog-img">
<a href="javascript:void(0);"
><img src="<?php echo $URLPATH;?>certificateimage/<?php echo $Certificatedetails[$Certificate]['image'];?>" width="100%" alt=""
/></a>
</div>
<?php }} ?>
</div>
</div>
</div>
</div>
<!-- .blog -->
<!-- <div class="our-events">
<div class="container">
<div class="title wow fadeInUp" data-wow-delay=".1s">
<div class="title-logo">B</div>
<div class="title-info">
<h2>Our Events</h2>
<p class="desc">
Upcoming Education Events to feed your brain.
</p>
</div>
</div>
<div class="oe-content">
<div class="oe-item oe-one wow fadeInUp" data-wow-delay=".1s">
<div class="oe-info">
<div class="oe-date">
<a href="event-detail.html">25 <span>September</span></a>
</div>
<h3 class="oe-title">
<a href="event-detail.html"
>Elegant Light Box Paper Cut Dioramas</a
>
</h3>
<div class="oe-desc">
<p>
Duis autem vel eum iriure dolor in hendrerit in vulputate
velit esse molestie consequat, vel illum dolore
</p>
</div>
<a href="event-detail.html" class="oe-read btn-border"
>Read More</a
>
</div>
<div class="oe-thumb">
<a href="event-detail.html"
><img src="images/our-events-01.jpg" alt=""
/></a>
<p>8:00 Am - 5:00 Pm Vancouver Canada</p>
</div>
</div>
<div class="oe-item oe-two wow fadeInUp" data-wow-delay=".1s">
<div class="oe-thumb">
<a href="event-detail.html"
><img src="images/our-events-02.jpg" alt=""
/></a>
<p>8:00 Am - 5:00 Pm Vancouver Canada</p>
</div>
<div class="oe-info">
<div class="oe-date">
<a href="event-detail.html">18 <span>September</span></a>
</div>
<h3 class="oe-title">
<a href="event-detail.html"
>Elegant Light Box Paper Cut Dioramas</a
>
</h3>
<div class="oe-desc">
<p>
Duis autem vel eum iriure dolor in hendrerit in vulputate
velit esse molestie consequat, vel illum dolore
</p>
</div>
<a href="event-detail.html" class="oe-read btn-border"
>Read More</a
>
</div>
</div>
</div>
</div>
</div> -->
<!-- <div class="partner wow fadeInUp" data-wow-delay=".1s">
<div class="container">
<div class="partner-content">
<div class="partner-slider owl-carousel">
<div class="partner-item">
<a href="#" class="partner-img"
><img src="images/assets/partner-01.png" alt=""
/></a>
<a href="#" class="partner-fill-img"
><img src="images/assets/partner-black-01.png" alt=""
/></a>
</div>
<div class="partner-item">
<a href="#" class="partner-img"
><img src="images/assets/partner-02.png" alt=""
/></a>
<a href="#" class="partner-fill-img"
><img src="images/assets/partner-black-02.png" alt=""
/></a>
</div>
<div class="partner-item">
<a href="#" class="partner-img"
><img src="images/assets/partner-03.png" alt=""
/></a>
<a href="#" class="partner-fill-img"
><img src="images/assets/partner-black-03.png" alt=""
/></a>
</div>
<div class="partner-item">
<a href="#" class="partner-img"
><img src="images/assets/partner-04.png" alt=""
/></a>
<a href="#" class="partner-fill-img"
><img src="images/assets/partner-black-04.png" alt=""
/></a>
</div>
<div class="partner-item">
<a href="#" class="partner-img"
><img src="images/assets/partner-05.png" alt=""
/></a>
<a href="#" class="partner-fill-img"
><img src="images/assets/partner-black-05.png" alt=""
/></a>
</div>
</div>
</div>
</div>
</div> -->
<!-- .partner -->
</main>
<!-- .site-main -->
<footer id="footer" class="site-footer">
<?php include("include/footer.php");?>
<!-- .footer-top -->
<div class="footer-bottom wow fadeInUp" data-wow-delay=".1s">
<div class="container">
<div class="row">
<div class="col-lg-4 col-md-5">
<div class="f-socials">
<ul>
<?php
$Socialdetails = $userObj->getfrontSocialdetails($mysqli);
if (sizeof($Socialdetails)>0)
{
for($Social=0;$Social<sizeof($Socialdetails);$Social++)
{
?>
<li class="<?php echo $Socialdetails[$Social]['title'];?>">
<a target="_blank" href="<?php echo $Socialdetails[$Social]['hreflink'];?>"><i class="<?php echo $Socialdetails[$Social]['icon'];?>" aria-hidden="true"></i
></a>
</li>
<?php }} ?>
</ul>
</div>
</div>
<div class="col-lg-4 col-md-2">
<div class="logo-footer">
<a href="#"><img src="<?php echo $URLPATH;?>siteimage/<?php echo $editsite['logo'];?>" alt=""/></a>
</div>
</div>
<div class="col-lg-4 col-md-5">
<div class="f-legal">
<ul>
<li><a href="privacypolicy.php">Privacy policy</a></li>
<li><a href="#">Sitemap</a></li>
<li><a href="#">Application Form</a></li>
</ul>
</div>
</div>
</div>
</div>
</div>
<!-- .footer-bottom -->
</footer>
<!-- site-footer -->
<div class="go-up">
<a href="#"><i class="fa fa-chevron-up"></i></a>
</div>
<!-- end go-up -->
</div>
<!-- #wrapper -->
<script>
// jQuery(document).ready(function() {
// jQuery(function() {
// jQuery(this).bind("contextmenu", function(event) {
// event.preventDefault();
// // alert('Right click disable in this site!!')
// });
// });
// });
</script>
<!-- jQuery -->
<script src="<?php echo $URLPATH;?>js/jquery-1.12.4.js"></script>
<script src="<?php echo $URLPATH;?>libs/popper/popper.js"></script>
<script src="<?php echo $URLPATH;?>libs/bootstrap/js/bootstrap.min.js"></script>
<script src="<?php echo $URLPATH;?>libs/owl-carousel/owl.carousel.min.js"></script>
<script src="<?php echo $URLPATH;?>libs/owl-carousel/jquery.owl-filter.js"></script>
<script src="<?php echo $URLPATH;?>js/waypoints.min.js"></script>
<script src="<?php echo $URLPATH;?>js/jquery.counterup.min.js"></script>
<script src="<?php echo $URLPATH;?>libs/jquery.countdown/jquery.countdown.min.js"></script>
<script src="<?php echo $URLPATH;?>js/main.js"></script>
</body>
</html>