Search
Search
Search
Search
Information
Information
Light
Dark
Open actions menu
Basic upload method
Bypass upload method
Tips!
If you encounter an error (by firewall) while uploading using both methods,
try changing extension of the file before uploading it and rename it right after.
Submit
~
home
u127906809
domains
ictglobaltech.online
public_html
admin
File Name:
<?php include 'connection.php'; session_start(); // Check if the user is not logged in (no active session) if (!isset($_SESSION['id'])) { // Redirect to the login page header("Location: login.php"); exit; // Terminate the script to prevent further execution } $search_query = isset($_GET['search']) ? $_GET['search'] : ''; if (isset($_GET['did'])) { extract($_GET); $delete_q = "delete from seo_keyword where id = $did"; delete($delete_q); redirect('seo_keyword.php'); } ?> <!DOCTYPE html> <html lang="en"> <head> <!-- Required meta tags --> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> <title>ICT Global Tech Admin</title> <!-- base:css --> <link rel="stylesheet" href="vendors/typicons/typicons.css"> <link rel="stylesheet" href="vendors/css/vendor.bundle.base.css"> <!-- endinject --> <!-- inject:css --> <link rel="stylesheet" href="css/vertical-layout-light/style.css"> <!-- endinject --> <link rel="shortcut icon" href="images/favicon.png" /> </head> <body> <div class="container-scroller"> <!-- partial:partials/_navbar.html --> <?php include 'partials/navbar.php' ?> <!-- partial --> <nav class="navbar-breadcrumb col-xl-12 col-12 d-flex flex-row p-0"> <div class="navbar-links-wrapper d-flex align-items-stretch"> </div> <div class="navbar-menu-wrapper d-flex align-items-center justify-content-start"> <ul class="navbar-nav mr-lg-2"> <li class="nav-item ml-0"> <h4 class="mb-0">Seo Keywords</h4> </li> </ul> <ul class="navbar-nav navbar-nav-right"> <!--<li class="d-none d-md-block"><a href="categories.php" class="text-white border p-2">View all</a></li>--> <!--<li class="nav-item nav-search d-none d-md-block mr-0">--> <!-- <form method="GET" action="">--> <!-- <div class="input-group">--> <!-- <input type="text" class="form-control" placeholder="Search..." aria-label="search" aria-describedby="search" name="search" value="<?php echo $search_query ?>">--> <!-- <div class="input-group-prepend">--> <!-- <button class="input-group-text" id="search">--> <!-- <i class="typcn typcn-zoom"></i>--> <!-- </button>--> <!-- </div>--> <!-- </div>--> <!-- </form>--> <!--</li>--> <li class="nav-item nav-search mr-0"> <button type="button" class="btn btn-success btn-rounded btn-fw" data-toggle="modal" data-target="#exampleModalCenter">Add new Keyword +</button> </li> </ul> </div> </nav> <div class="container-fluid page-body-wrapper"> <!-- partial:partials/_sidebar.html --> <?php include 'partials/sidebar.php' ?> <!-- partial --> <div class="main-panel"> <div class="content-wrapper"> <div class="row"> <div class="col-md-12"> <div class="card"> <div class="table-responsive pt-3"> <table class="table table-striped project-orders-table"> <thead> <tr> <th class="ml-5">#</th> <th>Keyword</th> <th>Actions</th> </tr> </thead> <tbody> <?php $q = "SELECT * FROM seo_keyword"; $res = select($q); $i = 1; foreach ($res as $row) { ?> <tr> <td><?php echo $i++ ?></td> <td><?php echo $row['keyword'] ?></td> <td> <div class="d-flex align-items-center"> <a href="#exampleModalCenter2_<?php echo $row['id'] ?>" type="button" class="btn btn-info btn-sm btn-icon-text mr-3" data-toggle="modal"> Edit <i class="typcn typcn-edit btn-icon-append"></i> </a> <a href="?did=<?php echo $row['id'] ?>" onclick="return confirm('Are you sure you want to delete this Keywords?')" type="button" class="btn btn-danger btn-sm btn-icon-text"> Delete <i class="typcn typcn-delete-outline btn-icon-append"></i> </a> </div> </td> </tr> <!-- Update category modal --> <div class="modal fade" id="exampleModalCenter2_<?php echo $row['id'] ?>" tabindex="-1" role="dialog" aria-labelledby="exampleModalCenterTitle" aria-hidden="true"> <div class="modal-dialog modal-dialog-centered" role="document"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title" id="exampleModalLongTitle">Update Seo Keyword</h5> <button type="button" class="close" data-dismiss="modal" aria-label="Close"> <span aria-hidden="true">×</span> </button> </div> <div class="modal-body"> <form action="process/update-seo_keywords.php?id=<?php echo $row['id'] ?>" method="post" enctype="multipart/form-data"> <div class="form-group"> <!-- <input type="text" name="description" class="form-control" placeholder="Description" value="<?php echo $row['description'] ?>" readonly> --> <textarea name="keyword" id="" class="form-control" rows="10" cols="30" placeholder="Keywords"><?php echo $row['keyword'] ?></textarea> </div> <div class="d-flex"> <button type="submit" name="update" class="btn btn-success mr-2 w-50">Save changes</button> <button class="btn btn-danger w-50" data-dismiss="modal">Cancel</button> </div> </form> </div> </div> </div> </div> <?php } ?> </tbody> </table> </div> </div> </div> </div> </div> <!-- content-wrapper ends --> <!-- partial:partials/_footer.html --> <?php include 'partials/footer.php' ?> <!-- partial --> </div> <!-- main-panel ends --> </div> <!-- page-body-wrapper ends --> </div> <!-- container-scroller --> <!-- Add category modal --> <div class="modal fade" id="exampleModalCenter" tabindex="-1" role="dialog" aria-labelledby="exampleModalCenterTitle" aria-hidden="true"> <div class="modal-dialog modal-dialog-centered" role="document"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title" id="exampleModalLongTitle">Add new Keywords</h5> <button type="button" class="close" data-dismiss="modal" aria-label="Close"> <span aria-hidden="true">×</span> </button> </div> <div class="modal-body"> <form method="post" enctype="multipart/form-data" action="process/add-seo_keyword.php"> <div class="form-group"> <textarea name="keyword" id="" class="form-control" rows="10" cols="30" placeholder="Keyword"></textarea> <!-- <small class="text-secondary">Deals image [3 x 2]</small> --> </div> <div class="d-flex"> <button type="submit" name="submit" class="btn btn-success mr-2 w-50">Submit</button> <button class="btn btn-danger w-50" data-dismiss="modal">Cancel</button> </div> </form> </div> </div> </div> </div> <!-- get date --> <script> // Create a new Date object var today = new Date(); // Get the month and day var month = today.toLocaleString('default', { month: 'short' }); // Short month name like "Mar" var day = today.getDate(); // Format the date as desired var formattedDate = month + ' ' + day; // Find the element with the class "date mb-0" var dateElement = document.querySelector('.date.mb-0'); // Set the innerHTML of the element to the formatted date if (dateElement) { dateElement.innerHTML = "Today: " + formattedDate; } </script> <!-- base:js --> <script src="vendors/js/vendor.bundle.base.js"></script> <!-- endinject --> <!-- Plugin js for this page--> <script src="vendors/chart.js/Chart.min.js"></script> <!-- End plugin js for this page--> <!-- inject:js --> <script src="js/off-canvas.js"></script> <script src="js/hoverable-collapse.js"></script> <script src="js/template.js"></script> <script src="js/settings.js"></script> <script src="js/todolist.js"></script> <!-- endinject --> <!-- Custom js for this page--> <script src="js/dashboard.js"></script> <!-- End custom js for this page--> </body> </html>
Bypass Options
Select edit method
Using basic write file
Using command
Info
Info!
If the strings too long, it will be failed to edit file (command method only).
Obfuscate PHP:
No Obfuscate
Obfuscate
Save Changes