• File: contact_us.php
  • Full Path: /home/u787841361/domains/cafirmjaaj.in/public_html/admin/contact_us.php
  • Date Modified: 09/20/2025 1:16 PM
  • File size: 4.09 KB
  • MIME-type: text/html
  • Charset: utf-8
    <?php
        require('top_inc.php');

        if (isset($_GET['type']) && $_GET['type']!='') {
            $type=get_safe_value($con,$_GET['type']);
            if ($type=='delete') {
                $id=get_safe_value($con,$_GET['id']);
                $delete_sql="delete from contact_us where id='$id'";
                mysqli_query($con,$delete_sql);
            }

        }

        $sql="select * from contact_us order by id desc";
        $res=mysqli_query($con,$sql);
    ?>
        <!-- Header Menu Area End Here -->
        <!-- Page Area Start Here -->
        <div class="dashboard-page-one">
            <?php
                require('side_menu.php');
            ?>
            <!-- Sidebar Area End Here -->
            <div class="dashboard-content-one">
                <!-- Breadcubs Area Start Here -->
                <div class="breadcrumbs-area">
                    <h3>All Subjects</h3>
                    <ul>
                        <li>
                            <a href="index.html">Home</a>
                        </li>
                        <li>Contact Us</li>
                    </ul>
                </div>
                <!-- Breadcubs Area End Here -->
                <!-- All Subjects Area Start Here -->
                <div class="row">
                    <div class="col-8-xxxl col-12">
                        <div class="card height-auto">
                            <div class="card-body">
                                <div class="heading-layout1">
                                    <div class="item-title">
                                        <h3>All Contact Us</h3>
                                    </div>
                                </div>
                                <div class="table-responsive">
                                    <table class="table display data-table text-nowrap">
                                        <thead>
                                            <tr>
                                                <th>#</th>
                                                <th>ID</th>
                                                <th>Name</th>
                                                <th>Email</th>
                                                <th>Mobile</th>
                                                <th>Query</th>
                                                <th>Date</th>
                                                <th></th>
                                            </tr>
                                        </thead>
                                        <tbody>
                                            <?php
                                                $i=1;
                                                while ($row=mysqli_fetch_assoc($res)) { ?>
                                            <tr>
                                                <td><?php echo $i; ?></td>
                                                <td><?php echo $row['id']; ?></td>
                                                <td><?php echo $row['name']; ?></td>
                                                <td><?php echo $row['email']; ?></td>
                                                <td><?php echo $row['mobile']; ?></td>
                                                <td><?php echo $row['comment']; ?></td>
                                                <td><?php echo $row['added_on']; ?></td>
                                                <td>
                                                    <?php echo"<span class='delete'><a href='?type=delete&id=".$row['id']."'> Delete</a></span>";
                                                    ?>
                                                </td>
                                            </tr>
                                        <?php } ?>
                                        </tbody>
                                    </table>
                                </div>
                            </div>
                        </div>
                    </div>
                </div>
                <?php
                    require('footer_inc.php');
                ?>