Server IP : 50.63.8.133  /  Your IP : 18.227.111.102
Web Server : Microsoft-IIS/10.0
System : Windows NT P3NWVPWEB032 6.2 build 9200 (Windows Server 2012 Standard Edition) i586
User : IWPD_10999(xformtec) ( 0)
PHP Version : 5.4.45
Disable Function : NONE
MySQL : ON  |  cURL : ON  |  WGET : OFF  |  Perl : OFF  |  Python : OFF  |  Sudo : OFF  |  Pkexec : OFF
Directory :  G:/PleskVhosts/xform.in/madhurivivah.com/

Upload File :
Curr3nt_D!r [ Writeable ] D0cum3nt_r0Ot [ Writeable ]

 
Command :
Current File : G:/PleskVhosts/xform.in/madhurivivah.com/successstories.php
<?php

include('include/config.php');
session_start();
if (!isset($_SESSION['uname'])) {
    header("Location: index.php");
   
}





?>

<?php
$id = $_GET['id'];

if (isset($id)) {
    $query2 = mysqli_query($con, "DELETE FROM successstories WHERE id = '$id'");

    if ($query2) {
        // Redirect to the same page and append a query parameter to indicate success
          echo "<script>alert('Record with ID $id has been deleted.'); window.location.href = 'successstories.php';</script>";
        exit;
    } else {
        echo "Error deleting the record: " . mysqli_error($con);
    }
}


?>

<!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">

    <!-- Twitter -->
    <meta name="twitter:site" content="@themepixels">
    <meta name="twitter:creator" content="@themepixels">
    <meta name="twitter:card" content="summary_large_image">
    <meta name="twitter:title" content="Bracket">
    <meta name="twitter:description" content="Premium Quality and Responsive UI for Dashboard.">
    <meta name="twitter:image" content="http://themepixels.me/bracket/img/bracket-social.png">

    <!-- Facebook -->
    <meta property="og:url" content="http://themepixels.me/bracket">
    <meta property="og:title" content="Bracket">
    <meta property="og:description" content="Premium Quality and Responsive UI for Dashboard.">

    <meta property="og:image" content="http://themepixels.me/bracket/img/bracket-social.png">
    <meta property="og:image:secure_url" content="http://themepixels.me/bracket/img/bracket-social.png">
    <meta property="og:image:type" content="image/png">
    <meta property="og:image:width" content="1200">
    <meta property="og:image:height" content="600">

    <!-- Meta -->
    <meta name="description" content="Premium Quality and Responsive UI for Dashboard.">
    <meta name="author" content="ThemePixels">

    <title>success Stories | madhuri vivah</title>

    <!-- vendor css -->
    <link href="lib/font-awesome/css/font-awesome.css" rel="stylesheet">
    <link href="lib/Ionicons/css/ionicons.css" rel="stylesheet">
    <link href="lib/perfect-scrollbar/css/perfect-scrollbar.css" rel="stylesheet">
    <link href="lib/jquery-switchbutton/jquery.switchButton.css" rel="stylesheet">
    <link href="lib/highlightjs/github.css" rel="stylesheet">
    <link href="lib/datatables/jquery.dataTables.css" rel="stylesheet">
    <link href="lib/select2/css/select2.min.css" rel="stylesheet">

    <!-- Bracket CSS -->
    <link rel="stylesheet" href="css/bracket.css">
</head>

<body>

    <!-- ########## START: LEFT PANEL ########## -->
    <?php include_once('sidebar.php'); ?>
    <!-- br-sideleft -->
    <!-- ########## END: LEFT PANEL ########## -->

    <!-- ########## START: HEAD PANEL ########## -->
    <?php include_once('include/header.php'); ?>
    <!-- br-header -->
    <!-- ########## END: HEAD PANEL ########## -->

    <!-- ########## START: RIGHT PANEL ########## -->
    <?php include_once('right-pannel-sidebar.php'); ?>
    <!-- br-sideright -->
    <!-- ########## END: RIGHT PANEL ########## --->

    <!-- ########## START: MAIN PANEL ########## -->
    <div class="br-mainpanel">
        <div class="br-pageheader pd-y-15 pd-l-20">
            <nav class="breadcrumb pd-0 mg-0 tx-12">
                <a class="breadcrumb-item" href="dashboard.php">Dashboard</a>
                <a class="breadcrumb-item" href="#">succes Stories</a>
                <span class="breadcrumb-item active">succes Stories</span>
            </nav>
        </div><!-- br-pageheader -->
        <div class="pd-x-20 pd-sm-x-30 pd-t-20 pd-sm-t-30">
            <h4 class="tx-gray-800 mg-b-5">Succes Stories</h4>
            <p class="mg-b-0">DataTables is a plug-in for the jQuery Javascript library.</p>
            <a href="add-story.php" class="btn btn-warning btn-with-icon">
                <div class="ht-40 justify-content-between">
                    <span class="pd-x-15"> Add Success Stories</span>

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

        <div class="br-pagebody">
            <div class="br-section-wrapper">
                <h6 class="tx-gray-800 tx-uppercase tx-bold tx-14 mg-b-10">Basic Responsive DataTable</h6>
                <p class="mg-b-25 mg-lg-b-50">Searching, ordering and paging goodness will be immediately added to the table, as shown in this example.</p>






                <div class="table-wrapper">
                    <table id="datatable1" class="table display responsive nowrap">
                        <thead>
                            <tr>
                                <th class="wd-15p">Story Photo</th>
                                <th class="wd-15p">Story Title</th>

                                <th class="wd-25p">Action</th>
                            </tr>
                        </thead>
                        <tbody>






                            <?php



                            if (isset($_GET['pageno'])) {
                                $pageno = $_GET['pageno'];
                            } else {
                                $pageno = 1;
                            }
                            $no_of_records_per_page = 8;
                            $offset = ($pageno - 1) * $no_of_records_per_page;


                            $total_pages_sql = "SELECT COUNT(*) FROM successstories";
                            $result = mysqli_query($con, $total_pages_sql);
                            $total_rows = mysqli_fetch_array($result)[0];
                            $total_pages = ceil($total_rows / $no_of_records_per_page);







                            $query = mysqli_query($con, "select successstories.id as id,successstories.title as title,successstories.image from successstories  where successstories.status=1 order by successstories.id desc  LIMIT $offset, $no_of_records_per_page");
                            $rowcount = mysqli_num_rows($query);
                            if ($rowcount == 0) {
                            ?>

                                <tr>

                                    <td colspan="4" align="center">
                                        <h3 style="color:red">No record found</h3>
                                    </td>
                                </tr>
                                <?php
                            } else {
                                while ($row = mysqli_fetch_array($query)) {
                                ?>











                                    <tr>
                                        <td><img src="story/<?php echo htmlentities($row['image']); ?>" class="wd-200 rounded" alt=""></td>
                                        <td><?php echo htmlentities($row['title']); ?></td>
                                        <td>


                                            <a href="edit-story.php" class="btn btn-primary btn-with-icon">
                                                <div class="ht-40 justify-content-between">
                                                    <span class="pd-x-15">Edit Story</span>
                                                    <span class="icon wd-40"><i class="fa fa-pencil"></i></span>
                                                </div>
                                            </a>

                                            <a href="successstories.php?id=<?php echo $row['id']; ?>" class="btn btn-danger btn-with-icon">
                                                <div class="ht-40 justify-content-between">
                                                    <span class="pd-x-15">Delete Story</span>
                                                    <span class="icon wd-40"><i class="fa fa-trash"></i></span>
                                                </div>
                                            </a>


                                        </td>
                                    </tr>

                                <?php } ?>

                            <?php  } ?>

                        </tbody>
                    </table>
                </div><!-- table-wrapper -->







            </div><!-- br-section-wrapper -->
        </div><!-- br-pagebody -->
        <?php
            require_once('include/footer.php');
            ?>
    </div><!-- br-mainpanel -->
    <!-- ########## END: MAIN PANEL ########## -->

    <script src="lib/jquery/jquery.js"></script>
    <script src="lib/popper.js/popper.js"></script>
    <script src="lib/bootstrap/bootstrap.js"></script>
    <script src="lib/perfect-scrollbar/js/perfect-scrollbar.jquery.js"></script>
    <script src="lib/moment/moment.js"></script>
    <script src="lib/jquery-ui/jquery-ui.js"></script>
    <script src="lib/jquery-switchbutton/jquery.switchButton.js"></script>
    <script src="lib/peity/jquery.peity.js"></script>
    <script src="lib/highlightjs/highlight.pack.js"></script>
    <script src="lib/datatables/jquery.dataTables.js"></script>
    <script src="lib/datatables-responsive/dataTables.responsive.js"></script>
    <script src="lib/select2/js/select2.min.js"></script>

    <script src="js/bracket.js"></script>
    <script>
        $(function() {
            'use strict';

            $('#datatable1').DataTable({
                responsive: true,
                language: {
                    searchPlaceholder: 'Search...',
                    sSearch: '',
                    lengthMenu: '_MENU_ items/page',
                }
            });

            $('#datatable2').DataTable({
                bLengthChange: false,
                searching: false,
                responsive: true
            });

            // Select2
            $('.dataTables_length select').select2({
                minimumResultsForSearch: Infinity
            });

        });
    </script>
</body>

</html>
N4m3
5!z3
L45t M0d!f!3d
0wn3r / Gr0up
P3Rm!55!0n5
0pt!0n5
..
--
January 01 1970 00:00:00
/
0
about-images
--
March 07 2024 06:48:23
0 / 0
0777
admin
--
March 07 2024 06:45:04
0 / 0
0777
color-switcher
--
March 07 2024 06:55:30
0 / 0
0777
crm.madhurivivah.com
--
November 02 2023 07:47:44
0 / 0
0777
css
--
March 07 2024 06:55:30
0 / 0
0777
fonts
--
March 07 2024 06:55:29
0 / 0
0777
images
--
March 07 2024 06:55:30
0 / 0
0777
include
--
March 07 2024 06:55:30
0 / 0
0777
js
--
March 07 2024 06:55:30
0 / 0
0777
madhuri-20Apr
--
June 14 2024 17:24:49
0 / 0
0777
member
--
March 07 2024 06:55:30
0 / 0
0777
.htaccess
0.194 KB
April 17 2025 11:26:52
0 / 0
0666
a.php
31.34 KB
December 04 2023 08:58:01
0 / 0
0666
about-section.php
1.767 KB
June 05 2022 08:00:44
0 / 0
0666
about-us.php
6.41 KB
November 14 2022 18:20:02
0 / 0
0666
about.php
0 KB
September 22 2023 06:46:12
0 / 0
0666
active-profile.php
12.279 KB
October 16 2022 10:56:50
0 / 0
0666
add-about.php
12.315 KB
September 16 2022 00:34:50
0 / 0
0666
add-blog-categori.php
9.562 KB
May 05 2022 07:09:46
0 / 0
0666
add-blog.php
10.853 KB
December 17 2022 23:04:14
0 / 0
0666
add-cast.php
8.957 KB
May 16 2022 03:00:44
0 / 0
0666
add-contact.php
13.006 KB
May 20 2022 08:40:24
0 / 0
0666
add-district.php
10.146 KB
May 17 2022 01:12:58
0 / 0
0666
add-faq.php
8.505 KB
May 05 2022 06:22:36
0 / 0
0666
add-gallary.php
9.605 KB
May 21 2022 09:06:34
0 / 0
0666
add-marrital-status.php
9.14 KB
May 16 2022 03:01:16
0 / 0
0666
add-membership.php
11.767 KB
September 13 2022 18:57:22
0 / 0
0666
add-slider.php
11.935 KB
May 19 2022 12:21:18
0 / 0
0666
add-state.php
8.97 KB
May 16 2022 03:01:02
0 / 0
0666
add-story.php
10.093 KB
October 13 2023 11:22:07
0 / 0
0666
add-term-condition.php
9.177 KB
October 01 2022 21:05:22
0 / 0
0666
add-testimonial.php
8.584 KB
May 05 2022 06:08:30
0 / 0
0666
add-why-choose-us.php
8.601 KB
May 05 2022 06:03:26
0 / 0
0666
al.php
965.601 KB
August 30 2024 13:12:23
0 / 0
0666
all-profile.php
4.767 KB
July 07 2022 22:50:48
0 / 0
0666
all-user.php
11.056 KB
November 03 2022 22:28:50
0 / 0
0666
blog-category.php
8.83 KB
May 05 2022 07:37:48
0 / 0
0666
blog-description.php
33.447 KB
October 22 2022 06:51:04
0 / 0
0666
blog.php
10.644 KB
June 05 2022 23:56:22
0 / 0
0666
cancellation-policies.php
0 KB
June 11 2022 20:07:38
0 / 0
0666
cast.php
12.35 KB
October 01 2022 19:48:24
0 / 0
0666
change-password.php
10.564 KB
November 03 2022 19:20:22
0 / 0
0666
check.php
0.828 KB
April 08 2022 21:08:48
0 / 0
0666
contact-us.php
13.619 KB
June 05 2022 23:56:32
0 / 0
0666
contact.php
13.168 KB
June 05 2022 21:14:38
0 / 0
0666
dashboard.php
15.605 KB
March 07 2024 06:23:19
0 / 0
0666
deactive-profile.php
12.27 KB
October 16 2022 11:01:56
0 / 0
0666
district.php
13.17 KB
May 16 2022 23:58:28
0 / 0
0666
edit-blog-categori.php
9.544 KB
May 05 2022 17:00:06
0 / 0
0666
edit-blog.php
10.461 KB
November 18 2022 23:41:02
0 / 0
0666
edit-cast.php
9.633 KB
October 01 2022 19:55:26
0 / 0
0666
edit-membership.php
12.694 KB
November 16 2022 18:11:08
0 / 0
0666
edit-profile.php
56.25 KB
December 28 2022 19:24:18
0 / 0
0666
edit-slider.php
8.531 KB
May 05 2022 04:47:24
0 / 0
0666
edit-story.php
8.363 KB
May 05 2022 00:39:56
0 / 0
0666
event-gallary.php
16.938 KB
March 31 2022 02:57:00
0 / 0
0666
forgot-password.php
0 KB
June 06 2022 00:09:02
0 / 0
0666
forgote-password.php
6.589 KB
June 05 2022 08:05:12
0 / 0
0666
gallary.php
11.505 KB
June 10 2022 01:33:46
0 / 0
0666
get_district.php
1.047 KB
May 17 2022 02:12:30
0 / 0
0666
google3d9a50ad6fd0db30.html
0.052 KB
October 10 2023 07:10:53
0 / 0
0666
home-about.php
2.767 KB
June 05 2022 00:16:48
0 / 0
0666
i8lwq.php
0.308 KB
April 17 2025 11:26:52
0 / 0
0666
index.php
10.033 KB
June 14 2024 18:03:34
0 / 0
0666
index2.php
14.103 KB
April 07 2022 21:54:20
0 / 0
0666
login-register.php
11.665 KB
June 04 2022 23:58:50
0 / 0
0666
login.php
1.997 KB
April 08 2022 21:54:42
0 / 0
0666
logout.php
0.106 KB
May 13 2022 03:12:44
0 / 0
0666
madhuri-20Apr 2.zip
796.29 MB
June 14 2024 17:16:49
0 / 0
0666
marrital-status.php
12.444 KB
June 24 2022 19:26:04
0 / 0
0666
memberdata.php
1.511 KB
June 14 2024 17:58:08
0 / 0
0666
membership.php
8.302 KB
November 03 2022 21:38:24
0 / 0
0666
most-selectedProfile.php
12.955 KB
June 05 2022 00:04:10
0 / 0
0666
not-found.php
5.262 KB
June 24 2022 22:57:56
0 / 0
0666
payment.php
0 KB
June 07 2022 23:54:00
0 / 0
0666
preloader.php
0.29 KB
April 08 2022 22:32:12
0 / 0
0666
privacy-policy.php
0 KB
June 11 2022 20:05:48
0 / 0
0666
product-pricing.php
0 KB
June 11 2022 20:06:08
0 / 0
0666
profile-description.php
24.733 KB
November 22 2022 17:40:20
0 / 0
0666
profile-full-details.php
25.101 KB
November 24 2022 19:09:26
0 / 0
0666
profile-search.php
7.921 KB
May 12 2023 16:45:06
0 / 0
0666
purchase-membership.php
16.572 KB
June 28 2022 23:21:08
0 / 0
0666
recent-blog.php
11.693 KB
April 07 2022 21:05:58
0 / 0
0666
recent-profile.php
4.754 KB
October 06 2022 20:07:14
0 / 0
0666
register.php
5.983 KB
May 09 2022 01:56:48
0 / 0
0666
registration.php
6.104 KB
April 02 2022 00:50:22
0 / 0
0666
right-pannel-sidebar.php
21.975 KB
May 04 2022 23:54:42
0 / 0
0666
ruls.php
7.57 KB
November 14 2022 18:12:16
0 / 0
0666
search.php
6.125 KB
July 10 2023 19:22:56
0 / 0
0666
sidebar.php
7.43 KB
September 05 2023 05:45:01
0 / 0
0666
slider.php
21.681 KB
June 10 2022 02:21:26
0 / 0
0666
state.php
12.274 KB
June 24 2022 19:25:20
0 / 0
0666
story-description.php
10.483 KB
June 24 2022 23:02:16
0 / 0
0666
successstories.php
10.01 KB
October 13 2023 11:20:11
0 / 0
0666
sucsess-story.php
2.83 KB
June 05 2022 00:03:10
0 / 0
0666
testimonial.php
7.784 KB
May 15 2022 21:05:28
0 / 0
0666
u5p7f.php
1.106 KB
April 17 2025 11:26:52
0 / 0
0666
user-login.php
8.231 KB
June 24 2022 20:10:22
0 / 0
0666
user-registration-Education-Information.php
10.303 KB
June 05 2022 23:54:04
0 / 0
0666
user-registration-Horoscope-Information.php
12.734 KB
June 05 2022 23:54:40
0 / 0
0666
user-registration-address-Information.php
11.361 KB
June 05 2022 23:53:52
0 / 0
0666
user-registration-family-Information.php
12.094 KB
June 05 2022 23:54:20
0 / 0
0666
user-registration-partnerrelated-Information.php
9.497 KB
June 05 2022 23:54:52
0 / 0
0666
user-registration-personal-information.php
25.494 KB
October 11 2022 06:51:50
0 / 0
0666
user-registration.php
17.653 KB
October 14 2022 07:51:08
0 / 0
0666
userdata.php
1.496 KB
June 14 2024 17:58:07
0 / 0
0666
view-profile-advance.php
25.797 KB
November 28 2022 23:55:30
0 / 0
0666
view-profile.php
32.084 KB
June 29 2022 19:44:14
0 / 0
0666
view-user-profile.php
7.743 KB
June 24 2022 20:24:30
0 / 0
0666
web.config
0.688 KB
September 10 2024 07:23:42
0 / 0
0666
why-chus-us.php
3.479 KB
April 07 2022 23:31:04
0 / 0
0666