55ok

Mini

Direktori : /home/u307599615/domains/costumeonrent.in/public_html/admin/
Upload File :
Current File : /home/u307599615/domains/costumeonrent.in/public_html/admin/viewblog.php

<?php
include("connection.php");
include("header.php");
?>
<div class="main-content">
    <div class="page-content">
        <div class="container-fluid">
            <!-- start page title -->
            <div class="row">
                <div class="col-12">
                    <div class="page-title-box d-sm-flex align-items-center justify-content-between">
                        <h4 class="mb-sm-0 font-size-18">View blog</h4>
                    </div>
                </div>
            </div>
            <!-- end page title -->

            <div class="row">
                <div class="col-lg-12">
                    <div class="card">
                        <div class="card-body">
                            <div class="row mb-2">
                                <div class="col-sm-6 mt-3">
                                    <div class="search-box me-2 d-inline-block">
                                        <div class="position-relative">
                                            <input type="text" class="form-control" autocomplete="off" id="searchInput" onkeyup="searchTable()" placeholder="Search...">
                                            <i class="bx bx-search-alt search-icon"></i>
                                        </div>
                                    </div>

                                </div>
                                <div class="col-sm-6 mt-3">
                                    <div class="text-sm-end">
                                        <a href="addblog.php"> <button type="button" data-bs-toggle="modal" data-bs-target="#newContactModal" class="btn btn-success btn-rounded waves-effect waves-light addContact-modal mb-2">
                                                <i class="mdi mdi-plus me-1"></i> New Contact
                                            </button></a>
                                    </div>
                                </div>
                                <!-- end col-->
                            </div>
                            <!-- end row -->
                            <div class="table-responsive">
                                <table class="table align-middle table-nowrap table-hover dt-responsive nowrap w-100" id="userList-table">
                                    <thead class="table-light">
                                        <tr>
                                            <th scope="col">S.no</th>
                                            <th scope="col">Image</th>
                                            <th scope="col">Title</th>
                                            <th scope="col">Slug</th>
                                            <!-- <th scope="col">Description</th> -->
                                            <th scope="col">Short Des</th>
                                            <th scope="col" style="width: 200px">Action</th>
                                        </tr>
                                    </thead>
                                    <tbody>
                                        <?php
                                        $query = "SELECT * FROM `blog` ORDER BY id DESC";
                                        $sql = mysqli_query($con, $query);
                                        $serial = 1;
                                        while ($row = mysqli_fetch_assoc($sql)) {
                                        ?>
                                            <tr>
                                                <td><?php echo $serial++; ?></td> <!-- Serial Number -->
                                                <td><img src="./assets/images/blog/<?php echo $row['Image'] ?>" height="150px" width="150px" alt="" class="img-fluid"></td>
                                                
                                                <td><?php echo $row['title'] ?></td>
                                                <td><?php echo $row['slug'] ?></td>
                                                <!-- <td><?php echo $row['description'] ?></td> -->
                                                <td><?php echo $row['short_des'] ?></td>

                                                <td><a href="editblog.php?id=<?php echo $row['id'] ?>"><button type="button" value="Edit" data-bs-target="#newContactModal" class="btn btn-primary btn-rounded waves-effect waves-light addContact-modal mb-2">
                                                            <i class="far fa-edit"></i> Edit
                                                        </button></a>
                                                    <a onclick="return confirm('Are u Delete Image?')" href="deleteblog.php?id=<?php echo $row['id'] ?>"><button type="button" value="delete" data-bs-target="#newContactModal" class="btn btn-danger btn-rounded waves-effect waves-light addContact-modal mb-2">
                                                            <i class="fas fa-trash"></i> Delete
                                                        </button></a>
                                                </td>
                                            </tr>
                                        <?php
                                        }
                                        ?>

                                    </tbody>

                                </table>
                                <!-- end table -->
                            </div>
                            <!-- end table responsive -->
                        </div>
                    </div>
                </div>
            </div>
        </div>
        <!-- container-fluid -->
    </div>
    <!-- End Page-content -->




    <?php
    include("footer.php");
    ?>
</div>

Zerion Mini 1.0