ok

Mini Shell

Direktori : /home/ngwcolle/public_html/admin/
Upload File :
Current File : /home/ngwcolle/public_html/admin/manage-pmt-status.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 Status</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 Status</h1>

                        </div>


                        <!-- DataTales Example -->
                        <div class="card shadow mb-4">
                            <div class="container-fluid float-left p-3 mt-2">
                                <nav class="nav nav-pills nav-justified">
                                    <a class="nav-link active" href="manage-pmt-status.php">Success Transactions</a>
                                    <a class="nav-link" href="manage-pmt-status-fail.php">Failed Transactions</a>
                                    <!-- <a class="nav-link" href="#">Link</a>
                                    <a class="nav-link disabled" href="#">Disabled</a> -->
                                </nav>
                            </div>
                            <div class="card-header py-3">
                                <div class="float-left">
                                    <h6 class="m-0 font-weight-bold text-primary">List of Students by Fees paid <span class="text-success">Success</span></h6>
                                </div>


                                <div class="float-right">
                                    <form action="export_data.php" method="POST" class="form-inline pl-2">
                                        <div class="form-group">
                                            <select class="form-control" name="file_type">
                                                <option value="xls">XLS</option>
                                                <option value="xlsx">XLSL</option>
                                                <option value="csv">CSV</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-secondary mr-2">Exportlist</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="table-responsive">
                                    <table class="table table-bordered" id="dataTable" width="100%" cellspacing="0">
                                        <thead>
                                            <tr>
                                                <th>Sno.</th>
                                                <th>Student Name</th>
                                                <th>Roll No</th>
                                                <th>Amount Paid</th>
                                                <th>Tx. Date</th>
                                                <th>Tx. Refno.</th>
                                                <th>Tx. Message</th>
                                                <th>Tx Status</th>
                                            </tr>
                                        </thead>

                                        <tbody>
                                            <?php $query = mysqli_query($con, "SELECT tbl_payment_history.*,tbl_student.studentfirstname,tbl_student.studentlastname,tbl_student.studentmiddlename from tbl_payment_history inner join tbl_student on tbl_payment_history.rollno=tbl_student.rollno where tbl_payment_history.responsecode='00' order by tbl_payment_history.id desc ");
                                            $cnt = 1;
                                            while ($row = mysqli_fetch_array($query)) {
                                            ?>

                                                <tr>
                                                    <td><?php echo $cnt; ?></td>
                                                    <td><?php echo $row['studentfirstname'] . " " . $row['studentmiddlename'] . " " . $row['studentlastname']; ?></td>
                                                    <td><?php echo $row['rollno']; ?></td>
                                                    <td><?php echo $row['amountpaid']; ?></td>
                                                    <td><?php echo date('d-m-Y H:i:s A', strtotime($row['txdatetime'])); ?></td>
                                                    <td><?php echo $row['TxnRefNo']; ?></td>
                                                    <td><?php echo $row['pmtmessage']; ?></td>
                                                    <td>

                                                        <?php
                                                        if ($row['responsecode'] == '00') {
                                                            echo '<span class="badge badge-success">' . $row['pmtstatus'] . '</span>';
                                                        } else {
                                                            echo '<span class="badge badge-danger">' . $row['pmtstatus'] . '</span>';
                                                        } ?>

                                                    </td>


                                                </tr>
                                            <?php $cnt++;
                                            } ?>
                                        </tbody>
                                    </table>
                                </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