Editing: /home/goacom/6club.princedev.shop/main/ifscm.php
<?php session_start(); if ($_SESSION['unohs'] == null) { header("location:index.php?msg=unauthorized"); } include("conn.php"); ?> <!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> <title>Dashboard</title> <link rel="stylesheet" href="vendors/mdi/css/materialdesignicons.min.css"> <link rel="stylesheet" href="vendors/feather/feather.css"> <link rel="stylesheet" href="vendors/base/vendor.bundle.base.css"> <link rel="stylesheet" href="vendors/flag-icon-css/css/flag-icon.min.css"/> <link rel="stylesheet" href="vendors/font-awesome/css/font-awesome.min.css"> <link rel="stylesheet" href="vendors/jquery-bar-rating/fontawesome-stars-o.css"> <link rel="stylesheet" href="vendors/jquery-bar-rating/fontawesome-stars.css"> <link rel="stylesheet" href="css/style.css"> <link rel="stylesheet" href="plugins/datatables/dataTables.bootstrap.css"> <link rel="stylesheet" href="https://cdn.datatables.net/1.12.1/css/jquery.dataTables.min.css"> <link rel="stylesheet" href="https://cdn.datatables.net/fixedheader/3.2.3/css/fixedHeader.dataTables.min.css"> <link rel="shortcut icon" href="images/favicon.png" /> <style> .cool-input { border: 2px solid #007bff; border-radius: 0.25rem; padding: 0.5rem 1rem; font-size: 1rem; transition: all 0.3s ease; } .cool-input:focus { border-color: #0056b3; box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25); } .cool-input::placeholder { color: #6c757d; opacity: 1; } .cool-button { padding: 0.5rem 1rem; font-size: 1rem; border-radius: 0.25rem; transition: all 0.3s ease; } .cool-button:hover { background-color: #0056b3; color: #fff; } .cool-button.btn-secondary:hover { background-color: #343a40; color: #fff; } #copied{ visibility: hidden; z-index: 1; position: fixed; bottom: 50%; background-color: #333; color: #fff; border-radius: 6px; padding: 16px; max-width: 250px; font-size: 17px; } #copied.show { visibility: visible; -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s; animation: fadein 0.5s, fadeout 0.5s 2.5s; } </style> </head> <body> <div class="container-scroller"> <nav class="navbar col-lg-12 col-12 p-0 fixed-top d-flex flex-row"> <div class="text-center navbar-brand-wrapper d-flex align-items-center justify-content-center"> <a class="navbar-brand brand-logo" href="dashboard.php"><img src="images/logo.png" alt="logo"/></a> <a class="navbar-brand brand-logo-mini" href="dashboard.php"><img src="images/logo-mini.png" alt="logo"/></a> </div> <div class="navbar-menu-wrapper d-flex align-items-center justify-content-end"> <button class="navbar-toggler navbar-toggler align-self-center" type="button" data-toggle="minimize"> <span class="icon-menu"></span> </button> <ul class="navbar-nav navbar-nav-right"> <li class="nav-item dropdown d-flex mr-4 "> <a class="nav-link count-indicator dropdown-toggle d-flex align-items-center justify-content-center" id="notificationDropdown" href="#" data-toggle="dropdown"> <i class="icon-cog"></i> </a> <div class="dropdown-menu dropdown-menu-right navbar-dropdown preview-list" aria-labelledby="notificationDropdown"> <p class="mb-0 font-weight-normal float-left dropdown-header">Settings</p> <a class="dropdown-item preview-item" href="logout.php"> <i class="icon-inbox"></i> Logout </a> </div> </li> </ul> <button class="navbar-toggler navbar-toggler-right d-lg-none align-self-center" type="button" data-toggle="offcanvas"> <span class="icon-menu"></span> </button> </div> </nav> <div class="container-fluid page-body-wrapper"> <nav class="sidebar sidebar-offcanvas" id="sidebar"> <div class="user-profile"> <div class="user-image"> <img src="images/faces/face28.png"> </div> <div class="user-name"> @Welcom To Admin </div> <div class="user-designation"> Admin </div> </div> <?php include 'compass.php';?> </nav> <div class="main-panel"> <div class="content-wrapper"> <div class="row"> <div class="col-sm-12 mb-4 mb-xl-0"> <h4 class="font-weight-bold text-dark">IFSC Modification</h4> <div class="row"> <div class="col-sm-12"> <div class="table-responsive"> <table id="yourTable" class="table table-striped"> <thead> <tr> <th>ID</th> <th>User ID</th> <th>Order No</th> <th>Ifsc Code</th> <th>Bank Account No</th> <th>Actions</th> </tr> </thead> <tbody> <?php $sql = "SELECT id, userid, deposit_order_no,bank_account_number,ifsc, order_amount, text_content, remarks FROM your_table WHERE prob = 'IFSC Modification' AND status = 2"; $result = $conn->query($sql); if ($result->num_rows > 0) { while ($row = $result->fetch_assoc()) { echo "<tr>"; echo "<td>" . $row["id"] . "</td>"; echo "<td>" . $row["userid"] . "</td>"; echo "<td>" . $row["deposit_order_no"] . "</td>"; echo "<td>" . $row["ifsc"] . "</td>"; echo "<td>" . $row["bank_account_number"] . "</td>"; echo "<td><button class='btn btn-primary edit-btn' data-id='" . $row["id"] . "' data-remarks='" . $row["remarks"] . "'>Do Responce</button></td>"; echo "</tr>"; } } else { echo "<tr><td colspan='6'>No results found.</td></tr>"; } $conn->close(); ?> </tbody> </table> </div> </div> </div> </div> <!-- Modal for editing remarks --> <div class="modal fade" id="editModal" tabindex="-1" aria-labelledby="editModalLabel" aria-hidden="true"> <div class="modal-dialog"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title" id="editModalLabel">Send Meassge</h5> <button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button> </div> <div class="modal-body"> <form id="editForm"> <input type="hidden" id="editId" name="id"> <div class="mb-3"> <label for="editRemarks" class="form-label">Remarks</label> <textarea class="form-control" id="editRemarks" name="remarks" rows="3"></textarea> </div> <button type="submit" class="btn btn-primary">Save Changes</button> </form> </div> </div> <!-- Footer --> <footer class="footer"> <div class="d-sm-flex justify-content-center justify-content-sm-between"> <span class="text-muted d-block text-center text-sm-left d-sm-inline-block">Copyright © admin 2024</span> </div> </footer> </div> </div> </div> <!-- JS Scripts --> <script src="vendors/base/vendor.bundle.base.js"></script> <script src="js/off-canvas.js"></script> <script src="js/hoverable-collapse.js"></script> <script src="js/template.js"></script> <script src="vendors/chart.js/Chart.min.js"></script> <script src="vendors/jquery-bar-rating/jquery.barrating.min.js"></script> <script src="js/dashboard.js"></script> <script src="https://cdn.datatables.net/1.12.1/js/jquery.dataTables.min.js"></script> <script src="https://code.jquery.com/jquery-3.6.0.min.js"></script> <script src="https://cdn.datatables.net/1.12.1/js/jquery.dataTables.min.js"></script> <script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha1/dist/js/bootstrap.bundle.min.js"></script> <script> $(document).ready(function () { $('#yourTable').DataTable(); // Open modal and populate data $('.edit-btn').click(function () { const id = $(this).data('id'); const remarks = $(this).data('remarks'); $('#editId').val(id); $('#editRemarks').val(remarks); $('#editModal').modal('show'); }); // Submit form to update remarks $('#editForm').submit(function (e) { e.preventDefault(); const formData = $(this).serialize(); $.post('update_remarks.php', formData, function (response) { alert(response.message); if (response.success) { location.reload(); } }, 'json'); }); }); </script> </body> </html>
💾 Save