Server IP : 2a02:4780:11:1361:0:bf7:7935:10 / Your IP : 3.137.219.123 Web Server : LiteSpeed System : Linux in-mum-web1261.main-hosting.eu 4.18.0-553.37.1.lve.el8.x86_64 #1 SMP Mon Feb 10 22:45:17 UTC 2025 x86_64 User : u200767797 ( 200767797) PHP Version : 8.1.31 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : OFF | Python : ON Directory (0755) : /home/u200767797/domains/shivainternational27.com/public_html/dashboard/ |
[ Home ] | [ C0mmand ] | [ Upload File ] |
---|
<?php session_start(); if(isset($_SESSION['name'])){ $name = $_SESSION['name']; $admin_id = $_SESSION['admin_id']; }else{ header("location: index.php"); } ?> <!DOCTYPE html> <html lang="en"> <!-- Mirrored from www.radixtouch.com/templates/admin/atrio/source/lighthr/index.html by HTTrack Website Copier/3.x [XR&CO'2014], Mon, 13 Sep 2021 05:57:35 GMT --> <head> <meta charset="UTF-8"> <meta content="width=device-width, initial-scale=1" name="viewport" /> <title>Fees</title> <!-- Favicon--> <link rel="icon" href="assets/images/favicon.ico" type="image/x-icon"> <!-- Plugins Core Css --> <link href="assets/css/app.min.css" rel="stylesheet"> <!-- Custom Css --> <link href="assets/css/style.css" rel="stylesheet" /> <!-- You can choose a theme from css/styles instead of get all themes --> <link href="assets/css/styles/all-themes.css" rel="stylesheet" /> </head> <body class="light"> <!-- Page Loader --> <div class="page-loader-wrapper"> <div class="loader"> <div class="m-t-30"> <img class="loading-img-spin" src="assets/images/loading.png" alt="admin"> </div> <p>Please wait...</p> </div> </div> <!-- #END# Page Loader --> <!-- Overlay For Sidebars --> <div class="overlay"></div> <!-- #END# Overlay For Sidebars --> <?php include('navigation.php') ?> <section class="content"> <div class="container-fluid"> <div class="block-header"> <div class="row"> <div class="col-xs-12 col-sm-12 col-md-12 col-lg-12"> <ul class="breadcrumb breadcrumb-style "> <li class="breadcrumb-item"> <h4 class="page-title">Dashboard</h4> </li> <li class="breadcrumb-item bcrumb-1"> <a href="home.php"> <i class="fas fa-home"></i> Home</a> </li> <li class="breadcrumb-item active">Fees</li> </ul> </div> </div> </div> <?php include('../connection.php'); $id = '1'; $cate=mysqli_query($con,"SELECT * FROM `fee` WHERE `id` = '$id'"); $a=0; while($row=mysqli_fetch_array($cate)){ $a++; //$id=$row['id']; $nm=$row['ielts']; $img=$row['pte']; } ?> <div class="row clearfix"> <div class="col-lg-12 col-md-12 col-sm-12 col-xs-12"> <div class="card"> <div class="header"> <h2>Details</h2> </div> <div class="body"> <form action="include/update_fee.php" method="POST" role="form" enctype="multipart/form-data"> <input type="hidden" name="id" value="<?php echo $id ?>" > <div class="form-group form-float"> <div class="form-line"> <input type="text" name="ielts" id="email_address" class="form-control" value="<?php echo $nm ?>"> <label class="form-label">Ielts</label> </div> </div> <div class="form-group form-float"> <div class="form-line"> <input type="text" name="pte" id="email_address" class="form-control" value="<?php echo $img ?>"> <label class="form-label">PTE</label> </div> </div> <button type="submit" class="btn btn-primary m-t-15 waves-effect">Submit</button> </form> </div> </div> </div> </div> </div> </section> <script src="assets/js/app.min.js"></script> <script src="assets/js/chart.min.js"></script> <!-- Custom Js --> <script src="assets/js/admin.js"></script> <script src="assets/js/bundles/echart/echarts.js"></script> <script src="assets/js/bundles/apexcharts/apexcharts.min.js"></script> <script src="assets/js/pages/index.js"></script> <script src="assets/js/pages/todo/todo.js"></script> </body> <!-- Mirrored from www.radixtouch.com/templates/admin/atrio/source/lighthr/index.html by HTTrack Website Copier/3.x [XR&CO'2014], Mon, 13 Sep 2021 05:58:06 GMT --> </html>