ok

Mini Shell

Direktori : /home/ngwcolle/public_html/admin/
Upload File :
Current File : /home/ngwcolle/public_html/admin/manage-pmt-summary.php

<?php session_start();
//DB conncetion
include_once('includes/config.php');
error_reporting(0);
//validating Session
if (strlen($_SESSION['aid'] == 0)) {
    header('location:logout.php');
} else {

    //Code for record deletion
    // if($_GET['teamid']){
    // $tid=$_GET['teamid'];
    // mysqli_query($con,"delete from tblteams where id ='$tid'");
    // echo "<script>alert('Data Deleted');</script>";
    // echo "<script>window.location.href='manage-teams.php'</script>";
    //           }
?>
    <!DOCTYPE html>
    <html lang="en">

    <head>

        <meta charset="utf-8">
        <meta http-equiv="X-UA-Compatible" content="IE=edge">
        <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
        <meta name="description" content="">
        <meta name="author" content="">

        <title>Manage Payment Summary</title>

        <!-- Custom fonts for this template -->
        <link href="vendor/fontawesome-free/css/all.min.css" rel="stylesheet" type="text/css">
        <link href="https://fonts.googleapis.com/css?family=Nunito:200,200i,300,300i,400,400i,600,600i,700,700i,800,800i,900,900i" rel="stylesheet">

        <!-- Custom styles for this template -->
        <link href="css/sb-admin-2.min.css" rel="stylesheet">

        <!-- Custom styles for this page -->
        <link href="vendor/datatables/dataTables.bootstrap4.min.css" rel="stylesheet">

    </head>

    <body id="page-top">

        <!-- Page Wrapper -->
        <div id="wrapper">

            <!-- Sidebar -->
            <?php include_once('includes/sidebar.php'); ?>
            <!-- End of Sidebar -->

            <!-- Content Wrapper -->
            <div id="content-wrapper" class="d-flex flex-column">

                <!-- Main Content -->
                <div id="content">

                    <!-- Topbar -->
                    <?php include_once('includes/topbar.php'); ?>
                    <!-- End of Topbar -->

                    <!-- Begin Page Content -->
                    <div class="container-fluid">

                        <!-- Page Heading -->
                        <div class="d-sm-flex align-items-center justify-content-between mb-4">
                            <h1 class="h3 mb-0 text-gray-800">View Student Payment Summary</h1>

                        </div>


                        <!-- DataTales Example -->
                        <div class="card shadow mb-4">

                            <div class="card-header py-3">
                                <div class="float-left">
                                    <h6 class="m-0 font-weight-bold text-primary">View Payment Summary <span class="text-success">Success</span></h6>
                                </div>

                                <div class="container-fluid float-left row p-2">
                                    <form action="" method="POST" class="form-inline pl-2 mt-3">
                                        <div class="form-group">
                                            <select class="form-control rounded-0 " name="file_type">
                                                <option value="xls">--Selelct Transaction Year--</option>
                                                <?php
                                                $starting_year = date('Y', strtotime('-6 year'));
                                                $ending_year = date('Y');
                                                // , strtotime('+10 year'));

                                                for ($starting_year; $starting_year <= $ending_year; $starting_year++) {
                                                    echo '<option value="' . $starting_year . '">' . $starting_year . '</option>';
                                                }
                                                ?>
                                            </select>
                                        </div>
                                        <!-- <a href="import-student.php" class="btn btn-secondary">Export Student List</a> -->
                                        <button type="submit" name="export_btn" class="btn btn-info rounded-0 ml-2">View Summary</button>

                                        <!-- <a href="import-student.php" class="btn btn-success mr-1">Import Student List</a> -->
                                        <!-- <a href="uploadeddata/NGWC_student_data.xlsx" class="btn btn-warning">Download Sample File</a> -->
                                    </form>
                                </div>

                            </div>
                            <div class="card-body">
                                <!-- <div class='alert alert-success' role='alert'></div> -->
                                <?php
                                if (isset($_SESSION["status"])) {
                                    echo "<div class='alert alert-success' role='alert'>" . $_SESSION['status'] . "</div>";
                                    unset($_SESSION["status"]);
                                }
                                ?>
                                <div class="row">
                                    <?php
                                    $result = mysqli_query($con, 'SELECT SUM(amountdue) AS value_sum FROM tbl_payment_order');
                                    $row = mysqli_fetch_assoc($result);
                                    $sum = $row['value_sum'];
                                    $result1 = mysqli_query($con, 'SELECT SUM(amountpaid) AS value_sum1 FROM tbl_payment_order');
                                    $row1 = mysqli_fetch_assoc($result1);
                                    $sum1 = $row1['value_sum1'];
                                    $result2 = mysqli_query($con, "SELECT count(id) AS value_spaid FROM tbl_payment_order where pmtstatus='1'");
                                    $row2 = mysqli_fetch_assoc($result2);
                                    $sum2 = $row2['value_spaid'];
                                    $result3 = mysqli_query($con, "SELECT count(*) AS value_snpaid FROM tbl_payment_order where pmtstatus='0'");
                                    $row3 = mysqli_fetch_assoc($result3);
                                    $sum3 = $row3['value_snpaid'];
                                    ?>
                                    <div class="col-xl-4 col-md-6 mb-4">
                                        <div class="card border-left-warning shadow h-100 py-2">
                                            <a href="new-requests.php">
                                                <div class="card-body">
                                                    <div class="row no-gutters align-items-center">
                                                        <div class="col mr-2">
                                                            <div class=" font-weight-bold text-warning text-uppercase mb-1"> Total Due Amount
                                                            </div>
                                                            <div class="row no-gutters align-items-center">
                                                                <div class="col-auto">
                                                                    <div class="h5 mb-0 mr-3 font-weight-bold text-gray-800"><?php echo $sum; ?></div>
                                                                </div>
                                                                <div class="col">

                                                                </div>
                                                            </div>
                                                        </div>
                                                        <div class="col-auto">
                                                            <i class="fa fa-fire fa-2x text-gray"></i>
                                                        </div>
                                                    </div>
                                                </div>
                                            </a>
                                        </div>
                                    </div>
                                    <div class="col-xl-4 col-md-6 mb-4">
                                        <div class="card border-left-success shadow h-100 py-2">
                                            <a href="new-requests.php">
                                                <div class="card-body">
                                                    <div class="row no-gutters align-items-center">
                                                        <div class="col mr-2">
                                                            <div class=" font-weight-bold text-success text-uppercase mb-1"> Total Collection
                                                            </div>
                                                            <div class="row no-gutters align-items-center">
                                                                <div class="col-auto">
                                                                    <div class="h5 mb-0 mr-3 font-weight-bold text-gray-800"><?php echo $sum1; ?></div>
                                                                </div>
                                                                <div class="col">

                                                                </div>
                                                            </div>
                                                        </div>
                                                        <div class="col-auto">
                                                            <i class="fa fa-fire fa-2x text-gray"></i>
                                                        </div>
                                                    </div>
                                                </div>
                                            </a>
                                        </div>
                                    </div>

                                    <div class="col-xl-4 col-md-6 mb-4">
                                        <div class="card border-left-danger shadow h-100 py-2">
                                            <a href="new-requests.php">
                                                <div class="card-body">
                                                    <div class="row no-gutters align-items-center">
                                                        <div class="col mr-2">
                                                            <div class=" font-weight-bold text-danger text-uppercase mb-1"> Total Outstanding
                                                            </div>
                                                            <div class="row no-gutters align-items-center">
                                                                <div class="col-auto">
                                                                    <div class="h5 mb-0 mr-3 font-weight-bold text-gray-800"><?php echo $sum - $sum1; ?></div>
                                                                </div>
                                                                <div class="col">

                                                                </div>
                                                            </div>
                                                        </div>
                                                        <div class="col-auto">
                                                            <i class="fa fa-fire fa-2x text-gray"></i>
                                                        </div>
                                                    </div>
                                                </div>
                                            </a>
                                        </div>
                                    </div>
                                    <div class="col-xl-4 col-md-6 mb-4">
                                        <div class="card border-left-success shadow h-100 py-2">
                                            <a href="new-requests.php">
                                                <div class="card-body">
                                                    <div class="row no-gutters align-items-center">
                                                        <div class="col mr-2">
                                                            <div class=" font-weight-bold text-success text-uppercase mb-1"> Total Students Paid
                                                            </div>
                                                            <div class="row no-gutters align-items-center">
                                                                <div class="col-auto">
                                                                    <div class="h5 mb-0 mr-3 font-weight-bold text-gray-800"><?php echo $sum2; ?></div>
                                                                </div>
                                                                <div class="col">

                                                                </div>
                                                            </div>
                                                        </div>
                                                        <div class="col-auto">
                                                            <i class="fa fa-fire fa-2x text-gray"></i>
                                                        </div>
                                                    </div>
                                                </div>
                                            </a>
                                        </div>
                                    </div>
                                    <div class="col-xl-4 col-md-6 mb-4">
                                        <div class="card border-left-danger shadow h-100 py-2">
                                            <a href="new-requests.php">
                                                <div class="card-body">
                                                    <div class="row no-gutters align-items-center">
                                                        <div class="col mr-2">
                                                            <div class=" font-weight-bold text-danger text-uppercase mb-1"> Total Students Pending
                                                            </div>
                                                            <div class="row no-gutters align-items-center">
                                                                <div class="col-auto">
                                                                    <div class="h5 mb-0 mr-3 font-weight-bold text-gray-800"><?php echo $sum3; ?></div>
                                                                </div>
                                                                <div class="col">

                                                                </div>
                                                            </div>
                                                        </div>
                                                        <div class="col-auto">
                                                            <i class="fa fa-fire fa-2x text-gray"></i>
                                                        </div>
                                                    </div>
                                                </div>
                                            </a>
                                        </div>
                                    </div>
                                    <!-- card ends -->

                                </div>
                            </div>
                        </div>

                    </div>
                    <!-- /.container-fluid -->

                </div>
                <!-- End of Main Content -->

                <!-- Footer -->
                <?php include_once('includes/footer.php'); ?>
                <!-- End of Footer -->

            </div>
            <!-- End of Content Wrapper -->

        </div>
        <!-- End of Page Wrapper -->

        <!-- Scroll to Top Button-->
        <?php include_once('includes/footer2.php'); ?>

        <!-- Bootstrap core JavaScript-->
        <script src="vendor/jquery/jquery.min.js"></script>
        <script src="vendor/bootstrap/js/bootstrap.bundle.min.js"></script>

        <!-- Core plugin JavaScript-->
        <script src="vendor/jquery-easing/jquery.easing.min.js"></script>

        <!-- Custom scripts for all pages-->
        <script src="js/sb-admin-2.min.js"></script>

        <!-- Page level plugins -->
        <script src="vendor/datatables/jquery.dataTables.min.js"></script>
        <script src="vendor/datatables/dataTables.bootstrap4.min.js"></script>

        <!-- Page level custom scripts -->
        <script src="js/demo/datatables-demo.js"></script>
    </body>

    </html>
<?php } ?>

Zerion Mini Shell 1.0