관리-도구
편집 파일: carrer.php
<!DOCTYPE html> <html lang="en" dir="ltr"> <head> <?php include('include/head_admin.php'); $id = $_GET['id']; $sql = "SELECT * FROM `career` WHERE `id` = '$id' "; $res = mysqli_query($con, $sql); $row = mysqli_fetch_assoc($res); ?> </head> <body> <!-- tap on top start --> <div class="tap-top"> <i data-feather="chevrons-up"></i> </div> <!-- tap on tap end --> <!-- page-wrapper Start --> <div class="page-wrapper compact-wrapper" id="pageWrapper"> <!-- Page Header Start--> <?php include('include/header_admin.php'); ?> <!-- Page Header Ends--> <!-- Page Body Start--> <div class="page-body-wrapper"> <!-- Page Sidebar Start--> <?php include('include/sidebar_admin.php'); ?> <!-- Page Sidebar Ends--> <!-- tracking section start --> <div class="page-body"> <!-- tracking table start --> <div class="container-fluid"> <div class="row"> <div class="col-sm-12"> <div class="card"> <div class="card-body"> <div class="title-header title-header-block package-card"> <div> <h5>Career Query of <?php echo $row['f_name'] . ' ' . $row['l_name'] ?></h5> </div> </div> <div class="bg-inner cart-section order-details-table"> <div class="row g-4"> <div class="col-xl-12"> <div class="order-success"> <div class="row g-4"> <div class="delivery-sec"> <!-- <h3>expected date of delivery: <span>october 22, 2018</span> </h3> --> <a href="carrer_query.php">Back to Home</a> </div> <h4>Students Profile Details</h4> <ul class="order-details"> <li><strong>Name:</strong> <?php echo $row['f_name'] . ' ' . $row['l_name'] ?></li> <li><strong>DOB:</strong> <?= date('d M, Y', strtotime($row['dob'])) ?></li> <li><strong>Position Applied:</strong> <?php echo $row['position_applied'] ?></li> <li><strong>Interested Subjects:</strong> <?php echo $row['interested_subject'] ?></li> <li><strong>Teaching for Classes Upto:</strong> <?php echo $row['teaching_upto'] ?></li> <li><strong>Residential Address:</strong> <?php echo $row['residential_address'] ?></li> <li><strong>Permanent Address:</strong> <?php echo $row['permanent_address'] ?></li> <li><strong>Father/Husband Name:</strong> <?php echo $row['father_husband_name'] ?></li> <li><strong>Family income:</strong> <?php echo $row['family_income'] ?></li> <li><strong>Medium:</strong> <?php echo $row['medium'] ?></li> <li><strong>Blood Group:</strong> <?php echo $row['blood_group'] ?></li> <li><strong>Nationality:</strong> <?php echo $row['nationality'] ?></li> <li><strong>Mother Tongue:</strong> <?php echo $row['mother_toungue'] ?></li> <li><strong>Religion:</strong> <?php echo $row['religion'] ?></li> <li><strong>Caste:</strong> <?php echo $row['caste'] ?></li> <li><strong>Phone:</strong> <?php echo $row['phone'] ?></li> <li><strong>Phone2:</strong> <?php echo $row['phone2'] ?></li> <li><strong>Aadhar Card No:</strong> <?php echo $row['adhar_no'] ?></li> <li><strong>Email Id:</strong> <?php echo $row['email'] ?></li> <li><strong>Previous School Name:</strong> <?php echo $row['pre_school_name'] ?></li> <li><strong>Previous Address:</strong> <?php echo $row['pre_address'] ?></li> <li><strong>Teaching Experience:</strong> <?php echo $row['teach_exp'] ?></li> <li><strong>Interested Teaching Subject:</strong> <?php echo $row['teachi_interested_subject'] ?></li> <li><strong>Languages Known:</strong> <?php echo $row['language_known'] ?></li> <li><strong>Medium of Teaching:</strong> <?php echo $row['teaching_medium'] ?></li> <li><strong>Prev Profession:</strong> <?php echo $row['previous_profession'] ?></li> <li><strong>Qualification:</strong> <?php echo $row['qualification'] ?></li> <li><strong>Photo:</strong> <a target="_blank" href="../media/career/<?php echo $row['image'] ?>"> <img src="../media/career/<?php echo $row['image'] ?>" alt="" width="100px" height="100px"> </a></li> </ul> </div> </div> </div> </div> </div> <!-- section end --> </div> </div> </div> </div> </div> <!-- tracking table end --> <?php include('include/footer_admin.php'); ?> </div> <!-- tracking section End --> </div> </div> <!-- page-wrapper End --> <?php include('include/foot_admin.php'); ?> </body> <!-- Mirrored from themes.pixelstrap.com/fastkart/back-end/order-detail.html by HTTrack Website Copier/3.x [XR&CO'2014], Wed, 10 Apr 2024 05:07:06 GMT --> </html>