관리-도구
편집 파일: admission.php
<!DOCTYPE html> <html lang="en" dir="ltr"> <head> <?php include('include/head_admin.php'); $id = $_GET['id']; $sql = "SELECT * FROM `admision` 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>Admission 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="admission_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['m_name'] . ' ' . $row['l_name'] ?></li> <li><strong>DOB:</strong> <?= date('d M, Y', strtotime($row['dob'])) ?></li> <li><strong>Gender:</strong> <?php echo $row['gender'] ?></li> <li><strong>Blood Group:</strong> <?php echo $row['blood_group'] ?></li> </ul> <h4>Students Parent Details</h4> <ul class="order-details"> <li><strong>Father Name:</strong> <?php echo $row['father_name'] ?></li> <li><strong>Father Qualification:</strong> <?php echo $row['father_qualification'] ?></li> <li><strong>Father Occupation:</strong> <?php echo $row['father_occupation'] ?></li> <li><strong>Residential Address:</strong> <?php echo $row['residential_address'] ?></li> <li><strong>Mother Name:</strong> <?php echo $row['mother_name'] ?></li> <li><strong>Mother Qualification:</strong> <?php echo $row['mother_qualification'] ?></li> <li><strong>Mother Occupation:</strong> <?php echo $row['mother_occupation'] ?></li> <li><strong>Family Income:</strong> <?php echo $row['family_income'] ?></li> </ul> <h4>Student Contact Details</h4> <ul class="order-details"> <li><strong>Phone:</strong> <?php echo $row['phone'] ?></li> <li><strong>Phone2:</strong> <?php echo $row['phone2'] ?></li> <li><strong>Email:</strong> <?php echo $row['email'] ?></li> <li><strong>Permanent Address:</strong> <?php echo $row['permanent_address'] ?></li> </ul> <h4>Student Other Details</h4> <ul class="order-details"> <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>Aadhar Card No.:</strong> <?php echo $row['adhar_no'] ?></li> <li><strong>Student Photo:</strong> <a target="_blank" href="../media/admision/<?php echo $row['image'] ?>"> <img src="../media/admision/<?php echo $row['image'] ?>" alt="" width="100px" height="100px"> </a></li> </ul> <h4>Student Admission Details</h4> <ul class="order-details"> <li><strong>Class to Which Admission is Sought:</strong> <?php echo $row['class'] ?></li> <li><strong>Medium:</strong> <?php echo $row['medium'] ?></li> <li><strong>School Last Attended:</strong> <?php echo $row['last_school'] ?></li> <li><strong>Previous Class Average Grade:</strong> <?php echo $row['pre_avg_grade'] ?></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>