Your IP : 216.73.217.20


Current Path : /home/u438053920/domains/allindiacomputereducation.com/public_html/
Upload File :
Current File : /home/u438053920/domains/allindiacomputereducation.com/public_html/courses.php

<!DOCTYPE html>

<html lang="en">

<head>
    <meta name="title" content="<?php if(isset($title)){ echo $title; }else{ echo $title ="Top IT Courese Coaching Academy in Vellore|All India Computer Education";} ?>">

    <meta name="description" content="<?php if(isset($meta_description)){ echo $meta_description; }else{ echo $meta_description ="All India Computer Education provides the best training on which trainees can build new skills. It is the best computer training institute in Vellore. They offer various services like software development, security, website design, digital marketing, cloud computing, etc. They also offer Internships in various domains.";} ?>">

    <meta name="keywords" content="Top,Best Coaching Center for Computer,Computer class in Vellore,which institute is best for computer course,computer training,cloud computing, data analystics,training in vellore,salem,coimbatore,madurai,chennai,bangalore,best coaching centre near me,Top IT Courese Coaching Academy in Vellore,which institute is best for computer course,computer training,cloud computing, data analystics,training in vellore,salem,coimbatore,madurai,chennai,bangalore,best coaching centre near me,best java developing class near to me,Web Developing in Vellore,C++Programming in Vellore,Graphic Designing in Vellore,HTML Class in Vellore,Python Class in Vellore,Diploa in Software Engineering in Vellore,Auto CADD IN vellorwhich institute is best for computer course,computer training,cloud computing, data analystics,training in vellore,salem,coimbatore,madurai,chennai,bangalore,best coaching centre near me,best java developing class near to me,Web Developing in Vellore,C++Programming in Vellore,Graphic Designing in Vellore,HTML Class in Vellore,Python Class in Vellore,Diploa in Software Engineering in Vellore,Auto CADD IN vellore,Master Diploma in Computer Applications(MDCA),Diploma in Computer Hardware and Networking (HDCHN),Advance Diploma in Multimedia Programming (ADMP),Master Diploma in Information Technology (MDIT),Diploma in System Assembly and Troubleshooting (DSAT) IN VELLORE,Certificate in Object Oriented Programming using C# in vellore,Tally class in vellore,System and Network Administration in Linux (SNAL) in vellore,Post Graduate Diploma in Computer Applications (PGDCA) in Vellore,Post Diploma in Software Applications (PDSA) in Vellore,Post Diploma in Software Technology (PDST) in Vellore,R Programming Language,Php Training,Amazon Web Service in vellore,computer coaching,Android development,Big Data Hadoop in Vellore,Splunk Class in Vellore,IT For Beginners in Vellore,Block Chain Developer in Vellore,Digital Marketing in Vellore,Linux class in vellore,VFX And Animation class in vellore,Diploma in Web Designing (DWD) in vellore,Diploma in Computer Science (DCS) in Vellore,Diploma in Computer Science (DCS),Data Science in Vellore,Cloud Computing in Vellore,CCNA Class in Vellore,Microsoft Office Class,Coaching in Vellore,.NET Coaching Center in Vellore,SNAW in Vellore,A-JAVA Class in Vellore,RDBMS & Oracle class in Vellore,Cyber Security Class in Vellore,Machine Language Class in Vellore,Graphic Designing Coaching class in vellore,Data Analytics in vellore,Web designing in vellore,Vellore,Best Web Desiging Class in Vellore,Top Web Development Coaching Center in Vellore,Top Website Development Coching Academy in Vellore,All india Computer Academy in Vellore,Digital Marketing Venture,Redback Acedemy,Learngae in Vellore,Computer Class for Collage students,Interships in IT company,IT Solutions in Vellore,Vellore,All India Computer Education-Vellore">

    <meta name="robots" content="index, follow">

    <meta http-equiv="Content-Type" content="text/html; charset=utf-8">

    <meta name="language" content="English">

	<meta charset="utf-8">

	<meta http-equiv="X-UA-Compatible" content="IE=edge">

	<!--<meta name="keywords" content="" />-->

	<meta name="author" content="All India Computer Education" />

	<!--<meta name="robots" content="" />-->

	<!--<meta name="description" content="Smart Class: coaching classes" />-->

	<meta property="og:title" content="Smart Class: coaching classes" />

	<meta property="og:description" content="Smart Class: coaching classes" />

	<meta property="og:image" content="" />

	<meta name="format-detection" content="telephone=no">
	
	<meta name="viewport" content="width=device-width, initial-scale=1">

<?php
$title = "Top IT Courses Coaching Academy in Vellore|All India Computers in Vellore|Computer Coaching Center in Vellore|Coaching Center in Vellore|Vellore|Computer Class in Vellore|Computer class for Students";
$meta_description = "All India Computer provides the best training on which trainees can build new skills. It is the best computer training institute in Vellore. They offer various services like software development, security, website design, digital marketing, cloud computing, etc. They also offer Internships in various domains.";
include 'header.php';
include 'connection.php';
?>
    <!-- Content -->
    <div class="page-content">
		<!-- inner page banner -->
        <div class="dlab-bnr-inr overlay-black-dark" style="background-image:url(images/banner/bnr1.jpg);">
            <div class="container">
                <div class="dlab-bnr-inr-entry">
                    <h1 class="text-white">Courses</h1>
					<!-- Breadcrumb row -->
					<div class="breadcrumb-row">
						<ul class="list-inline">
							<li><a href="index.php"> <i class="fa fa-home"></i></a></li>
							<li>Home</li>
							<li>Courses</li>
						</ul>
					</div>
					<!-- Breadcrumb row END -->
                </div>
            </div>
        </div>
        <!-- inner page banner END -->
		<!-- inner page banner END -->
        <div class="content-block">
			<div class="section-full bg-white content-inner" style="background-image:url(error-404.html); background-size:contain;background-repeat: no-repeat;background-position: center;">
                <div class="container">
					<div class="row">
					    <?php
						    if(isset($_GET['pageno'])){
                                $pageno = htmlspecialchars($_GET['pageno'], ENT_QUOTES, 'UTF-8');  
                            }else{
                                $pageno = 1;
                            }
                            $no_of_row_per_page = 12;
                            $offset = ($pageno-1) * $no_of_row_per_page;
                      
                            $sql_total= "SELECT COUNT(*) FROM `courses`";
                            $result = mysqli_query($conn, $sql_total);
                            $total_row = mysqli_fetch_array($result)[0];
                            $total_pages = ceil($total_row / $no_of_row_per_page);
                            // $resultCheck = mysqli_num_rows($result);
                      
                            $sql = "SELECT * FROM `courses` ORDER BY `id` DESC LIMIT $offset, $no_of_row_per_page ";
                            $resulth = mysqli_query($conn, $sql);
                            //$resultCheck = mysqli_num_rows($result);
            
                        	//if($resultCheck > 0){
                            while($rowh = mysqli_fetch_array($resulth)){
                              $course = htmlspecialchars($rowh['course_name'], ENT_QUOTES, 'UTF-8');
                          	
                        ?>
						<a href ="course-details.php?id=<?php echo htmlspecialchars($rowh['id'], ENT_QUOTES, 'UTF-8');  ?>"><div class="col-xl-4 col-lg-6 col-md-6 col-sm-6">
							<div class="courses-bx-2 m-b30">
								<img src="uploads/<?php  echo htmlspecialchars($rowh['course_image'], ENT_QUOTES, 'UTF-8'); ?>" alt="computer coaching Center in Vellore" style="width:100%; height:280px;">
								<div class="info" style="background-image:url('images/courses/board2.png');">
									<h2 class="title"><a href="course-details.php?id=<?php echo htmlspecialchars($rowh['id'], ENT_QUOTES, 'UTF-8'); ?>">
									<?php 
									$sqlc= "SELECT * FROM `course_list` WHERE `id` = $course";
                                    $resultc = mysqli_query($conn, $sqlc);
                                    $resultCheckc = mysqli_num_rows($resultc);
                                    
                                    if($resultCheckc > 0){
                                        while($rowc = mysqli_fetch_array($resultc)){
                                            echo  htmlspecialchars($rowc['course_name'], ENT_QUOTES, 'UTF-8'); 
                                        }
                                    } ?></a></h2>
									<p><?php //echo $row['syllabus_details'];
									    $text = htmlspecialchars($rowh['syllabus_details'], ENT_QUOTES, 'UTF-8'); 
                							if(strlen($text)>0):
                                                $text=substr($text,0,90);
                							    echo html_entity_decode($text); 
                							endif;
									?> ... <br><a class="float-right" href="course-details.php?id=<?php echo htmlspecialchars($rowh['id'], ENT_QUOTES, 'UTF-8'); ?>" style="color:white;">Read More</a></p>
								</div>
							</div>
						</div></a>
						<?php
            				}
            			?>
						
					</div>
					<div class="row">
						<div class="col-lg-12 col-md-12 col-sm-12">
							<div class="pagination-bx rounded pagination-lg clearfix primary">
								<ul class="pagination justify-content-center">
								    <li><a href="?pageno=1"><i class="ti-angle-double-left"></i></a></li>
									<li class="<?php if($pageno <= 1){ echo 'disabled';} ?>"><a href="<?php if($pageno <= 1){ echo '#';} else{ echo "?pageno=".($pageno - 1);} ?>"><i class="ti-arrow-left"></i> Prev</a></li>
                                	 <?php 
                                      $skipped = false; 
                                      for($i =1; $i <= $total_pages; $i++): ?>
                                    <li class="<?php if($pageno == $i){echo 'active';}else{ echo '';} ?> <?php if ($i < 2 || $total_pages- $i < 2 || abs($pageno - $i) < 2) { ?>">
                                       <?php
                                       if ($skipped)
                                              echo '<a><span> ... </span></a>';
                                              $skipped = false;
                                       ?> <a href="?pageno=<?php echo $i; ?>" ><?php echo $i;?> </a>
                                       <?php
                                          } else {
                                              $skipped = true;
                                          }
                                          ?>
                                    </li>
                                     <?php endfor; ?>
									<li class="<?php if($pageno >= $total_pages){ echo 'disabled';}?>"><a href="<?php if($pageno >= $total_pages){ echo '#';} else { echo "?pageno=".($pageno + 1);} ?>">Next <i class="ti-arrow-right"></i> </a></li>
								    <li><a href="?pageno=<?php echo $total_pages; ?>"><i class="ti-angle-double-right"></i></a></li>
								</ul>
							</div>
						</div>
					</div>
				</div>
            </div>
		</div>
    </div>
    <!-- Content END-->
<?php include 'footer.php'; ?>